LAMP-3安装 GD

来源:互联网 发布:windows.old删除不干净 编辑:程序博客网 时间:2024/05/29 03:27
 

 安装GD前提条件安装GD库(让PHP支持GIF,PNG,JPEG)

a。libpng

下载地址: libpng-1.5.8.tar.gz

http://download.csdn.net/detail/cyuyan112233/4049517
http://www.libpng.org/pub/png/libpng.html
libpng-1.5.8.tar.gz
   # cd /root/soft
   # tar -zxf libpng-1.5.8.tar.gz
   # cd libpng-1.5.8
   # cp scripts/makefile.std makefile
   # make; make install

b。freetype-2.4.8

下载地址:http://download.csdn.net/detail/cyuyan112233/4049522
[root@localhost freetype-2.4.8]#
[root@localhost freetype-2.4.8]# ./configure --prefix=/usr/local/freetype

c。jpegsrc.v7.tar.gz

下载地址:http://download.csdn.net/detail/cyuyan112233/4049527
./configure --prefix=/usr/local/jpeg7/ --enable-shared --enable-static

#./configure --prefix=/usr/local/jpeg6/ --enable-shared --enable-static

#make

#make install

#make install-lib

gd安装

下载地址:http://download.csdn.net/detail/cyuyan112233/4049535
linux gd down
# cd /home/xiutuo/software/
# tar -zvxf gd-2.0.33.tar.gz
# mkdir -p /usr/local/gd2
# cd gd-2.0.33
# ./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg7/ --with-png=/usr/local/lib/ --with-zlib=/usr/local/lib/ --with-freetype=/usr/local/freetype/
# ./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg7/ --with-png=/usr/lib/ --with-zlib=/usr/lib/ --with-freetype=/usr/local/freetype
# make; make install
./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg7/ --with-png=/usr/local/lib/ --with-zlib=/usr/local/zlib/ --with-freetype=/usr/local/freetype/