我有这个错误:
致命错误:在第65行的/home/example/public_html/generate.php中调用未定义函数 imagettfbbox()
generate.php第65行:
63- $code = $this->generateCode();
64- $font = _ROOT_PATH_ . '/Captcha/ccf.ttf';
65- imagettfbbox(138, 0, $font, $code);
请帮帮我:(
我有这个错误:
致命错误:在第65行的/home/example/public_html/generate.php中调用未定义函数 imagettfbbox()
generate.php第65行:
63- $code = $this->generateCode();
64- $font = _ROOT_PATH_ . '/Captcha/ccf.ttf';
65- imagettfbbox(138, 0, $font, $code);
请帮帮我:(
根据 http://php.net/manual/en/function.imagettfbbox.php
This function requires both the GD library and the » FreeType library.
您必须在 PHP 构建中缺少一个或两个必需的库。
使用以下代码构建文件“info.php”:
<?php phpinfo() ?>
运行它并查看缺少哪些,然后去安装它/它们。