用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字

油纸袋    -  云代码空间

——

Linux下安装PHP的GD支持库

2013-07-20|1636阅||

摘要:GD:Linux下安装PHP的GD支持库  Linux下安装PHP的GD支持库  1、安装zlib   tar -zxf zlib-1.2.3.tar.gz  cd zlib-1.2.3  ./configure --prefix=/usr/loca

GD:Linux下安装PHP的GD支持库 

Linux下安装PHP的GD支持库 

1、安装zlib  

tar -zxf zlib-1.2.3.tar.gz 

cd zlib-1.2.3 

./configure --prefix=/usr/local/zlib 

make 

make install 

2、安装jpeg 

mkdir -p /usr/local/jpeg6 

mkdir -p /usr/local/jpeg6/bin 

mkdir -p /usr/local/jpeg6/lib 

mkdir -p /usr/local/jpeg6/include 

mkdir -p /usr/local/jpeg6/man 

mkdir -p /usr/local/jpeg6/man1 

mkdir -p /usr/local/jpeg6/man/man1 

tar -zxf jpegsrc.v6b.tar.gz 

cd jpeg-6b 

./configure

make 

make install 

3、安装libpng 

tar -zxf libpng-1.2.16.tar.gz 

cd libpng-1.2.16 

./configure –prefix=/usr/local/libpng 

make 

make install 

4、安装freetype 

tar -zxf freetype-2.3.4.tar.gz 

cd freetype-2.3.4 

mkdir -p /usr/local/freetype 

./configure --prefix=/usr/local/freetype 

make 

make install 

5、安装GD 

tar -zxf gd-2.0.33.tar.gz 

cd gd-2.0.33 

mkdir -p /usr/local/gd2 

./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg6/ --with-png=/usr/local/lib/ --with-zlib=/usr/local/lib/ --with-freetype=/usr/local/freetype/ 

make 

make install 

6、重新编译安装php

./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-apxs2=/usr/local/apache2/bin/apxs  --with-mysql=/usr/local/mysql  --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-gd  --with-iconv --with-freetype --with-jpeg --with-png --with-zlib --with-libxml --enable-xml --enable-discard-path --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curlwrappers --enable-mbregex --enable-fastcgi --enable-force-cgi-redirect --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --with-mime-magic --enable-suhosin --enable-session --with-mcrypt --with-gd=/usr/local/gd2 --enable-gd-native-ttf --with-ttf=/usr/local --with-jpeg-dir=/usr/local --with-zlib-dir=/usr/local --with-png-dir=/usr/local

 

make
make install

顶 0踩 0收藏
文章评论
    发表评论

    个人资料

    • 昵称: 油纸袋
    • 等级: 高级程序员
    • 积分: 516
    • 代码: 0 个
    • 文章: 9 篇
    • 随想: 0 条
    • 访问: 4 次
    • 关注

    人气代码

      标签

      最新提问

        站长推荐