How to enable imagecreatefromgif / imagecreatefromjpeg / imagecreatefrompng in PHP?

Now it gives:

PHP Fatal error:  Call to undefined function imagecreatefromjpeg()

But gd library is included.

+5
source share
2 answers

Install php5-gd:

on a deb based system:

sudo apt-get install php5-gd

If you are using php-fpm, restart it:

sudo /etc/init.d/php5-fpm restart

Found this solution here

+7
source
+3
source

All Articles