For all who use php 7 and ubuntu
sudo apt-get install php7.0-gd
Pour activer le support de GD, vous devez compiler PHP avec l'option --with-gd[=DIR], où DIR est le dossier d'installation de GD. Il est recommandé d'utiliser la version de GD qui est distribuée avec PHP, en utilisant simplement l'option --with-gd. La bibliothèque GD requiert libpng et libjpeg pour compiler. À partir de PHP 7.4.0, --with-gd devient --enable-gd (s'il faut activer l'extension tout) et --with-external-gd (pour choisir d'utiliser une libgd externe, plutôt que celle fournie).
Sous Windows, vous devez inclure la bibliothèque php_gd.dll comme extension dans le fichier php.ini. Antérieur à PHP 8.0.0, la DLL était nommée php_gd2.dll.
Augmentez les possibilités des GD de gérer d'autres formats d'images
en spécifiant les options --with-XXXX
de compilation
suivantes :
Format d'image | Option de compilation |
---|---|
avif |
Pour activer le support de la bibliothèque avif, ajouter l'option --with-avif. Disponible à partir de PHP 8.1.0. |
jpeg |
Pour activer le support de la bibliothèque JPEG, ajouter l'option --with-jpeg-dir=DIR. Jpeg 6b, 7 ou 8 est supporté. À partir de PHP 7.4.0, utiliser à la place --with-jpeg |
png |
Pour activer le support de la bibliothèque PNG, ajouter l'option --with-png-dir=DIR. Notez que libpng requiert la bibliothèque zlib et, donc, il vous faudra ajouter aussi --with-zlib-dir[=DIR] dans votre ligne de compilation. À partir de PHP 7.4.0, --with-png-dir et --with-zlib-dir ont été supprimée. libpng et zlib sont nécessaire. |
xpm |
Pour activer le support de la bibliothèque XPM, ajoutez l'option --with-xpm-dir=DIR. Si le script de compilation n'est pas capable de trouver les bibliothèques nécessaires, il vous faudra ajouter le chemin vers les bibliothèques X11. À partir de PHP 7.4.0, utiliser à la place --with-xpm |
webp |
Pour activer la prise en charge de WebP, ajoutez --with-vpx-dir=DIR. À partir de PHP 7.4.0, utiliser à la place --with-webp |
Note: Lorsque vous compilez PHP avec libpng, vous devez utiliser la même version que celle liée à la bibliothèque GD.
Augmentez les possibilités de GD pour qu'elle manipule différents types
de polices de caractères en ajoutant les options
--with-XXXX
de compilation suivantes :
Bibliothèque | Option de configuration |
---|---|
FreeType 2 |
Pour activer le support de FreeType 2, ajoutez l'option --with-freetype-dir=DIR. À partir de PHP 7.4.0 utilisez --with-freetype à la place, qui dépend de pkg-config. |
Chaînes TrueType |
Pour activer le support des chaînes de caractères TrueType, ajoutez l'option --enable-gd-native-ttf. (Cette option n'a aucun effet et a été supprimée depuis PHP 7.2.0.) |
sudo apt-get install php5-gd && sudo service apache2 restart
To install under Ubuntu 14.04.
To install PHP GD extension on an Amazon Linux AMI server, with php 7:
sudo yum install php 70-gd
Do remember to restart Apache after the installation!
sudo service httpd restart
People having difficulties setting the --with-libdir option needs to set it like this :
--with-libdir=lib64
That option works fine. Doing --with-libdir=/usr/lib64 doesn't work because the configure script prepends the --prefix option before the --with-libdir option. So, doing --with-libdir=/usr/lib64 makes the configure script to look for libs in /usr/usr/lib64, which is wrong of course, and not in /usr/lib64.
#install under Ubuntu 16.04:
* if you have access to PHP7.1:
<sudo> apt install php7.1-gd && <sudo> systemctl restart apache2
* if you have access to PHP7.0:
<sudo> apt install php7.0-gd && <sudo> systemctl restart apache2
------------------------------------------------
Qussayyon Qamaron: Qusai.zf2gmailcom
Instructions how to compile bundled version on Linux:
http://stackoverflow.com/questions/35560150/php-gd-bundled-extension-without-recompiling-php-solution
It should be noted that it might be pretty easy to install gd without the need to recompile php, when using debian:
apt-get install php5-gd
php --version if result is 7.2 version
sudo apt-get install php7.2-gd
On Ubuntu I was missing the libpng-dev, libjpeg-dev (and in my case) libwebp-dev libraries, all gettable with apt-get.
Also once those libraries are installed, including --with-png-dir --with-jpeg-dir --with-webp-dir, without any values (i.e. =/dir) appeared to be valid ... though admittedly I didn't try without (in case the configure script autodetected them).
Note if you have php-fpm installed, you have to restart the service for the installation to show up in phpinfo output...
systemctl restart php-fpm (or equivalent)
I also had to install the libgd package in addition to php5-gd:
sudo apt-get install libgd2-xpm-dev*
To get GD bundled under Ubuntu, the way to recompile php5 with gd is described here (french) http://doc.ubuntu-fr.org/modules_php#php5-gd
If you are using PHPBREW , the extension is called gd.
So you do.
```
phpbrew ext install gd
```
It will compile the extension to the core.
If you have already compiled PHP and want to recompile '--with-gd', don't forget to run 'make clean' first!
I was running PHP on a SUSE box on amazon EC2.
to get gd to work all I had to do was to run:
> yast -i php5_gd
and when that completed I just restarted apache. voila!
On AntergosOS ( Arch linux )
*first run >>php -v and get current php version. In my case for PHP 7.1.14
sudo pacman -S php71-gd
then restart you apache server using,
sudo systemctl restart httpd
Installation on Pop-os No need for php5 or php7.0 etc:
sudo apt install php-gd
On Macox lion with mac port just use:
sudo port install php5-gd
As of PHP 7.4, to enable GD you have to use --enable-gd instead of --with-gd
Hello. Does GD image processing allow for color spaces / color profiles to be defined or maintained from the source image? For example, if I upload a jpg with ProPhoto RGB color space with the embedded profile, will all of the subsequent processed images that are output maintain the profile? Or is there no profile and or is it changed to sRGB?
Same question goes for ImageMagick.
Thank you so much!