我正在测试图像功能,但它最终会在浏览器上显示问号。 你知道怎么解决这个问题吗? 我使用safari作为我的浏览器。
<?php
$image = imagecreate(350,70);
$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($image, 0x00, 0x00, 0x00);
putenv("DGFONTPATH=".realpath('.'));
imagettftext($image, 20, 0, 10, 40, $black, 'arial.ttf', "Courier TrueType");
header("Content-Type:image/png");
imagepng($image);
?>
答案 0 :(得分:2)
你有一个错字。替换:
putenv("DGFONTPATH=".realpath('.'));
使用:
putenv("GDFONTPATH=".realpath('.'));
^^