调用未定义的函数imagettftext()

时间:2018-10-16 08:42:15

标签: php gd freetype

我没有PHP经验,但是我试图在我的macOS Sierra High 10.13.2上运行php文件。我收到此错误:

Call to undefined function imagettftext()

我同时安装了GD和Freetype。问题是什么?

for ( $i = 0; $i < strlen( $word ); $i++ ) {
            $font = $this->fonts[array_rand( $this->fonts )];
            $font = $this->normalize_path( $font );

            imagettftext( $im, $this->font_size, mt_rand( -12, 12 ), $x,
                $this->base[1] + mt_rand( -2, 2 ), $fg, $font, $word[$i] );
            $x += $this->font_char_width;
        }

0 个答案:

没有答案