Heim >php教程 >php手册 >PHP5安装GD库的具体操作步骤

PHP5安装GD库的具体操作步骤

WBOY
WBOYOriginal
2016-06-13 11:05:411281Durchsuche

大家对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库。


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn