laravel安装qrcode过程中要求ext-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扩展了^_^转载请注明出处:
未经允许不得转载:lxfamn » simplesoftwareio/simple-qrcode[1.3.0, …, 1.3.3] require ext-gd * 安装ext-gd 扩展