大家對GD庫應該有所了解,它是PHP進行圖文操作時一個重要的庫。那麼今天我們就來具體講解一下如何進行PHP5安裝GD庫1.下載libpng庫,至少需要支持一種文件類型,如果需要其他的類型則另外下載
http://nchc.dl.sourceforge.net/project/libpng/00-libpng-stable/1.2.40/libpng-1.2.40.tar.gz
解壓縮後,進入文件夾
cd libpng-1.2.40
mv scripts/makefile.linux ./Makefile #這裡一定要使用script下的Makefile ,不要通過./configure
生成
make
make install
PHP5安裝GD庫2.下載freetype庫,很多GD函數都需要這個庫的支持
http://ftp.twaren.net/Unix/NonGNU/freetype/freetype-2.3.5.tar.gz
3.解壓後
cd freetype-2.3.5
./configure --prefix=/usr/local/freetype #這裡指定freetype的安裝目錄,以便php編譯時用到
make
make install
PHP5安裝GD庫4.下載GD庫
從http://www.libgd.org上選擇合適的版本下載
解壓後進入目錄
./configure --prefix=/usr/local/gd2 --with-png --with-freetype #這裡不需要制定freetype目錄,
但是需要制定gd庫的安裝路徑
make
make install
PHP5安裝GD庫5.編譯PHP
進入php源碼目錄
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --without-sqlite --
without-pdo-sqlite --with-gd=/usr/local/gd2 --with-freetype-dir=/usr/local/freetype/
make
make install
重啟apache即可完成PHP5安裝GD庫。