Php

Centos 6, php 5.6 (remi repo), 安裝了 gd 和 freetype, 仍然缺少函式 imagettftext

  • February 25, 2020

我正在嘗試在 PHP 中安裝作曲家包,但要找回:

xxx 需要 ext-imagettftext * -> 您的系統中缺少請求的 PHP 擴展 imagettftext。

我在幾篇文章中讀到必須安裝 freetype 和 gd,但它們是:

php -i | grep "FreeType"
FreeType Support => enabled
FreeType Linkage => with freetype
FreeType Version => 2.3.11

php -i | grep "GD "
GD Support => enabled
GD headers Version => 2.2.5
GD library Version => 2.2.5

我正在使用 PHP 5.6 的 REMI 儲存庫,我很想知道我還需要做什麼才能讓ext-imagettftext正常工作。

我不知道有任何擴展呼叫imagettftext

imagettftextgd擴展提供的一個函式。

我認為composer.json有問題,應該有“ext-gd”

$ php -r 'var_dump(function_exists("imagettftext"));'
bool(true)

引用自:https://serverfault.com/questions/1004415