Laravel Intervention Image GD library extension

后端 未结 5 1625
不知归路
不知归路 2021-02-08 03:11

First of all, I am sorry if my question may be too vague. So, I will try to clarify my question as much as possible.

I am currently developing a Laravel application, and

5条回答
  •  礼貌的吻别
    2021-02-08 03:22

    Install GD extension:

    sudo apt-get install php7.0-gd
    

    For PHP 7.1 try the following:

    sudo apt-get install php7.1-gd
    

    For PHP 7.2 try the following:

    sudo apt-get install php7.2-gd
    

    Then restart your server.

    Apache:

    sudo service apache2 restart
    

    Nginx:

    sudo service nginx restart
    

提交回复
热议问题