gd中的imagettftext无法在我的笔记本电脑上工作

时间:2020-05-05 04:12:45

标签: php image gd imagettftext

当我使用apache服务器时,GD中的

imagettftext无法在笔记本电脑上工作。如果我注释掉函数行,则我的浏览器将正常显示图像,但在使用该函数时,它将显示带有白色边框的黑框。我有我的PHP的配置,除了日语字体外,其他所有内容都正确。我正在使用的代码是

<?php
$width = 270;
$height = 25;
$image = imageCreate($width, $height);
$white = imageColorAllocate($image, 255, 255, 255);
$black = imageColorAllocate($image, 0, 0, 0);
$font = './coolvetica condensed rg.ttf';
imagettftext($image, 16, 0, 0, 16, $black, $font, 'TESTING TEXT');
header("Content-type:  image/gif");
imageGIF($image);
?>

p.s。我只在笔记本电脑上尝试过这个。

0 个答案:

没有答案