Comment installer l'extension gd en PHP : 1. Entrez le répertoire d'installation de PHP 2. Exécutez la commande [/usr/local/php/bin/phpize] ; commande pour compiler et installer.
La première étape consiste à installer les dépendances
(tutoriel vidéo recommandé : tutoriel vidéo php )
1. Installez xpm
yum install libXpm-devel
2. Installez zlib
wget http://zlib.net/zlib-1.2.8.tar.gz tar -xzvf zlib-1.2.8.tar.gz cd zlib-1.2.8 ./configure make && make install make clean && make distclean cd ../
3. Installez libjpeg jpeg-9b
wget http://www.ijg.org/files/jpegsrc.v9b.tar.gztar -xzvf jpegsrc.v9b.tar.gz cd jpegsrc.v9b ./configure \--prefix=/usr/lib64 \--enable-shared \--enable-staticmake && make instll make clean && make distclean libtool --finish /usr/local/jpeg/lib cd ../
4. Installez libpng
<🎜. >
yum install libpng libpng-devel
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.7.tar.gztar -xzvf freetype-2.7.tar.gz cd freetype-2.7./configure \--prefix=/usr/lib64 make && make install make clean && make distclean cd ../
$ cd [php安装目录] $ cd ext/gd $ /usr/local/php/bin/phpize $ ./configure --with-php-config=/usr/local/php/bin/php-config --with-png-dir --with-freetype-dir --with-jpeg-dir --with-gd $ make $ make install
Installing shared extensions: /alidata/server/php-5.5.38/lib/php/extensions/no-debug-non-zts-20121212/
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!