Laravel Intervention Image GD library extension

后端 未结 5 844
情深已故
情深已故 2021-02-08 02:47

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:44

    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
    

提交回复
热议问题