Home > Backend Development > PHP Tutorial > 【PHP】GD库的安装

【PHP】GD库的安装

WBOY
Release: 2016-06-23 14:33:05
Original
881 people have browsed it

一服务器上的PHP版本为5.29,可是查看安装的模块,居然没有GD库,呵呵。
在使用 memcache.php 的时候,页面上就看不到漂亮的饼图了,呵呵。

安装步骤:
1、进入源码目录
# cd php-5.2.9/etc/gd/

2、可能需要 phpize 一下
3、编译,这里如果找不到 configure 文件,则需要执行2中的步骤。
# ./configure --with-gd
# make
# make install

4、修改 php.ini 文件,加入 extension=gd.so
5、记得重启 web server

好了,现在可以看到漂亮的饼图和柱状图了,呵呵。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template