|
现在很多人开始学习和了解linux的服务器环境,由于linux下apache和nginx手动配置php的情况下不会
默认安装GD库,天信网络数据中心(简称天信网络)很多图片水印相关的功能都无法实现,需要手动安
装GD库
在此,详细列出GD环境安装的具体流程
一、下载
gd-2.0.33.tar.gz http://www.boutell.com/gd/
jpegsrc.v6b.tar.gz http://www.ijg.org/
libpng-1.2.7.tar.tar http://sourceforge.net/projects/libpng/
zlib-1.2.2.tar.gz http://sourceforge.net/projects/zlib/
freetype-2.1.9.tar.gz http://sourceforge.net/projects/freetype/
php-5.2.17.tar.gz http://www.php.net
二、安装
1.安装zlib
tar zxvf zlib-1.2.2.tar.gz
cd zlib-1.2.2
./configure
make
make install
2.安装libpng
tar zxvf libpng-1.2.7.tar.tar
cd libpng-1.2.7
cd scripts/
mv makefile.linux ../makefile
cd ..
make
make install
注意,这里的makefile不是用./configure生成,而是直接从scripts/里拷一个
3.安装freetype
tar zxvf freetype-2.1.9.tar.gz
cd freetype-2.1.9
./configure
make
make install
4.安装Jpeg
tar zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
./configure --enable-shared
make
make test
make install
注意,这里configure一定要带--enable-shared参数,不然,不会生成共享库
5.安装GD
tar zxvf gd-2.0.33.tar.gz
cd gd-2.0.33
./configure --with-png --with-freetype --with-jpeg
make install
6.重新编译PHP
tar zxvf php-5.2.17tar.gz
cd php-5.2.17
./configure (以前的参数) --with-gd --enable-gd-native-ttf --with-zlib --with-png --with-
jpeg --with-freetype --enable-sockets
make
make install
./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-
apxs2=/usr/local/apache2/bin/apxs --with-gd --enable-gd-native-ttf --with-zlib --with-png
--with-jpeg --with-freetype --enable-sockets
<?php
phpinfo();
?>
Ok..... rhel5.3我的个人配置然后编辑php.ini,加入extension=gd.so
重启apache就行了
|
|