thinkphp 报错:Call to undefined function think\captcha\imagettftext()

原因是:没装freetype

先安装freetype

1:下载: wget "http://download.savannah.gnu.org/releases/freetype/freetype-2.4.0.tar.bz2"

2: 解压: tar jxvf freetype-2.4.0.tar.bz2

3:进入 reetype-2.4.0

4:./configure --prefix=/usr/local/freetype && make && make install

1,进入之前解压的php文件夹里面/usr/local/php-5.6.5/ext/gd里面

2,运行 phpize 然后:make clean再 运行./configure --with-freetype-dir=/usr/local/freetype

猜你喜欢

转载自blog.csdn.net/crazy22222/article/details/82791194