gpt4 book ai didi

php - imagettftext 无法打开字体文件

转载 作者:可可西里 更新时间:2023-11-01 12:52:47 24 4
gpt4 key购买 nike

使用 example from php.net我收到警告,图像未正确呈现。我像这样提供 .ttf 文件的完整路径:/var/www/public/myfont.ttf

PHP Warning:  imagettftext() [<a href='function.imagettftext'>function.imagettftext</a>]: Could not find/open font in <phpfile>

我正在使用找到的自定义 .ttf 字体 here .我可以在 Ubuntu 中将文件作为有效的字体文件打开。我也尝试了其他字体,结果相同。

我正在使用 Ubuntu 10.04 LTS 32 位,安装了 apache2、php5、freetype6 和 php5-gd。我还尝试用 ttf 文件 chmod 777 文件和文件夹,结果相同。

如何使用自定义 ttf 字体文件使示例正常工作?

*编辑:我正在使用的代码:

<?php
// File is: /var/www/public/test.php
// Apart from $font variable, it's copy-pasted from php.net

// Set the content-type
header('Content-Type: image/png');

// Create the image
$im = imagecreatetruecolor(400, 30);

// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);

// The text to draw
$text = 'Testing...';
// Replace path by your own font path
$font = '/var/www/public/UnmaskedBB.ttf';

// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);

// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);

// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>

phpinfo() 的输出;

[gd]
GD Support enabled
GD Version 2.0
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.3.11
T1Lib Support enabled
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 6b
PNG Support enabled
libPNG Version 1.2.42
WBMP Support enabled

测试 is_fileis_readable:

$font = realpath('./').'/UnmaskedBB.ttf';
echo "Font: ".$font; // /var/www/public/UnmaskedBB.ttf
echo "Is file? ".is_file($font); // 1
echo "Is readable? ".is_readable($font); // 1

最佳答案

你可以尝试插入:

putenv('GDFONTPATH=' . realpath('.'));

在第一个imagettftext之前,只是为了确保它没有路径问题。

更新

如果您正在使用字体缓存,如 fc-cache,请不要忘记刷新它,例如:

sudo fc-cache -f -v

关于php - imagettftext 无法打开字体文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6089393/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com