centos下为php添加gd扩展

第一步:

安装需要用到的库

yum -y install libjpeglibjpeg-devel libpng libpng-devel freetype freetype-devel

第二步:

进入到php的源码目录下的ext/gd目录(这里是源码目录,不是安装目录,注意区别)

1.首先执行:{$php_indtall_dir}/bin/phpize

注:这里的{$php_indtall_dir}指的是php的安装目录,如果安装到了/usr/local/php,那就执行/usr/local/php/bin/phpize,这里是要生成.configure编译文件的

2.执行:./configure --with-png-dir --with-freetype-dir --with-jpeg-dir --with-gd --with-php-config=/usr/local/php/bin/php-config

注:这里的--with-php-config目录根据自己php的安装路径配置

3.执行:make && make install

第三步:修改php.ini

添加:extension=gd.so

第四步:

重启php-rpm,再重启下nginx或是apache,这里就看到php_info页面有gd扩展了^_^


如果没有这个库,你的网站的验证是无法显示的哦!

你可能感兴趣的:(LINUX)