我正在尝试使用PHP / imagettftext将文本写入图像。不幸的是,下面的代码不起作用。注意事项:
字体IS在目录中,当我运行一个函数检查文件是否存在时,由PHP检测到。我错过了“.ttf”扩展名,因为如果字体与脚本位于同一目录中,显然你不需要这样做。
如果我注释掉imagettftext,背景图片就没有问题。
我能够成功使用imagestring编写文本。
这是使用imagettftext时显示的内容: 有什么想法吗?
header('Content-type: image/jpeg');
// Create Image From Existing File
$png_image = imagecreatefrompng('background.png');
// Allocate A Color For The Text
$white = imagecolorallocate($png_image, 255, 255, 255);
// Set Path to Font File
$font_path = 'DIN';
// Set Text to Be Printed On Image
$text = "This is a sunset!";
// Print Text On Image
imagettftext($png_image, 25, 0, 75, 300, $white, $font_path, $text);
// Send Image to Browser
imagejpeg($png_image);
// Clear Memory
imagedestroy($png_image);