【Laravel】使用mews/captcha验证码图片不显示,报错 Call to undefined function Intervention\Image\Gd\imagettfbbox()

问题:Call to undefined function Intervention\Image\Gd\imagettfbbox()
本函数同时需要 PHP 开启 GD 库和 FreeType 库。
有了gd扩展还是报错,原因是因为在gd扩展中还应该有个freeType,因此我们需要安装freeType,但是即使安装了freeType,还得重新编译php。

RUN apt-get install -y libpng-dev libfreetype6-dev libjpeg62-turbo-dev \
	&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/  \
	&& docker-php-ext-install -j$(nproc) gd iconv mcrypt

猜你喜欢

转载自blog.csdn.net/qq_22227087/article/details/109705124