Call to undefined function imagettftext解决方法

WBOY
Freigeben: 2016-07-29 08:58:16
Original
2405 Leute haben es durchsucht

由 老高 发表于 2014-10-03  在 代码人生 分类

老高在一个新环境中装DEDECMS的时候发现后台验证码无法显示。直接搜索一下这个错误,有人说session错误,有的说权限错误等等,这不胡扯么!只能看源代码了,定位到文件/include/vdimgck.php。出错的函数是imagettftext(),由于织梦使用了@将错误隐去,导致这次莫名的错误。将@去掉,错误立马出现:

Fatal error: Call to undefined function imagettftext()

现在我们就明确了,出现错误的原因是PHP编译时没有加上FreeType。

解决办法:

首先编译安装FreeType,以2.4.0为例:

<code><span>wget http://download.savannah.gnu.org/releases/freetype/freetype-<span>2.4.<span>0.tar.bz2
<span>tar -jxf freetype-<span>2.4.<span>0.tar.bz2
<span>cd reetype-<span>2.4.<span>0
<span># 安装到/usr/local/freetype
./configure --prefix=/usr/<span>local/freetype
<span>make && <span>make <span>install
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></code>
Nach dem Login kopieren

下面我们重新编译PHP,加上参数--with-freetype-dir=/usr/local/freetype

<code>./configure \
<span>... \
<span>... \
--<span>with-freetype-dir=/usr/local/freetype
</span></span></span></code>
Nach dem Login kopieren

编译完成重启php

<code>kill -USR2 `<span>cat /usr/local/php/<span>var/run/php-fpm.pid`
</span></span></code>
Nach dem Login kopieren

再GD库中找到FreeType Support说明安装成功!

需要注意的是,如果服务器freetype的版本是1.*,那么你可能需要改变编译参数为--with-ttf[=DIR],以下转自ChinaUnix论坛:

字库 配置开关
FreeType 1.x 要激活 FreeType 1.x 的支持,加上 --with-ttf[=DIR]。
FreeType 2 要激活 FreeType 2 的支持,加上 --with-freetype-dir=DIR。
T1lib 要激活 T1lib(Type 1 字体),加上 --with-t1lib[=DIR]。
本地 TrueType 字符串函数 要激活本地 TrueType 字符串函数的支持,加上 --enable-gd-native-ttf。

参考:

http://bbs.chinaunix.net/thread-610205-1-1.html

以上就介绍了Call to undefined function imagettftext解决方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage