web-dev-qa-db-ja.com

PHP致命的エラー:未定義関数imagettftext()の呼び出し

29行目にエラーPHP Fatal error: Call to undefined function imagettftext()が表示されるのはなぜですか?

<?php
ob_start();
session_start();

$strings = '123456789';
$i = 0;
$characters = 6;
$code = '';
while ($i < $characters)
{ 
    $code .= substr($strings, mt_Rand(0, strlen($strings)-1), 1);
    $i++;
} 

$_SESSION['captcha'] = $code;

//generate image
$im = imagecreatetruecolor(124, 40);
$foreground = imagecolorallocate($im, 0, 0, 0);
$shadow = imagecolorallocate($im, 173, 172, 168);
$background = imagecolorallocate($im, 255, 255, 255);

imagefilledrectangle($im, 0, 0, 200, 200, $background);

// use your own font!
$font = 'monofont.ttf';

//draw text:
imagettftext($im, 35, 0, 9, 28, $shadow, $font, $code);
imagettftext($im, 35, 0, 2, 32, $foreground, $font, $code);     

// prevent client side  caching
header("Expires: Wed, 1 Jan 1997 00:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

//send image to browser
header ("Content-type: image/png");
imagepng($im);
imagedestroy($im);
?>`

My PHP Info:

enter image description here

enter image description here

30
Jess McKenzie

imagettftext()のPHPマニュアルエントリ によると:

この関数には、Gdライブラリと"FreeTypeライブラリの両方が必要です。

PHP build。で必要なライブラリの一方または両方が欠落している必要があります。

34
Asaph

ドッカーで同じ問題を解決しますphp:7-fpm環境、およびソリューションをここに投稿します。


Dockerfileを使用して環境をセットアップする場合

# more Dockerfile  
FROM php:fpm 
RUN apt-get update && apt-get install -y \
    libfreetype6-dev \
        libmcrypt-dev \
        libpng12-dev \
        libjpeg-dev \
        libpng-dev
    && docker-php-ext-install iconv mcrypt \
    && docker-php-ext-configure Gd \
        --enable-Gd-native-ttf \
        --with-freetype-dir=/usr/include/freetype2 \
        --with-png-dir=/usr/include \
        --with-jpeg-dir=/usr/include \
    && docker-php-ext-install Gd \
    && docker-php-ext-install mbstring \
    && docker-php-ext-enable Gd

既存のコンテナにFreeTypeモジュールを追加する場合:

# on docker Host machine
docker exec -it $FPM_CONTAINER bash

>>>>

# inside the container
apt-get install -y \
        libfreetype6-dev \
        libmcrypt-dev \
        libpng12-dev \
        libjpeg-dev \
        libpng-dev
docker-php-ext-configure Gd \
        --enable-Gd-native-ttf \
        --with-freetype-dir=/usr/include/freetype2 \
        --with-png-dir=/usr/include \
        --with-jpeg-dir=/usr/include \
    && docker-php-ext-install Gd

exit

<<<<

docker restart $FPM_CONTAINER
25
Alfred Huang

フォルダphp/ext/Gdの下にある拡張機能Gd.soを再コンパイルするだけです

./configure --with-php-config=/usr/local/php5/bin/php-config --with-freetype-dir=/usr/ --enable-Gd-native-ttf

3
mcbill