我在test.php
文件中使用以下代码从文本生成图像。
<?php
error_reporting(E_ALL);
// 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 = '/home/axxxxxxx/public_html/font.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);
?>
然后我试图在test2.php
中显示图像,如下所示
<?php
echo "<img src=\"/test.php\" />";
?>
我得到的只是默认的破碎图像图标。字体文件和图片网址的路径是正确的。所有文件权限均为777.服务器具有GD库。
我可能做错了什么?
答案 0 :(得分:1)
这是由缺少的字体引起的。请复制test.php目录中的字体文件并更改代码:
$font = '/home/axxxxxxx/public_html/font.ttf';
到
$font = 'font.ttf';
希望它有所帮助。
答案 1 :(得分:1)
我的问题是错误的偏移。图像没有显示任何内容,没有文本,源代码中没有错误,只是一个空白文件。路径是正确的。我认为ttf字体有错误,但结果却是错误的定位。
这是帮助我看到一些文字的原因:
imagettftext($im, 20, 0, 20, 20, $fg, $font, $text);
这会在右上角显示一些文字。
完整的工作代码:
putenv('GDFONTPATH=' . dirname(__FILE__));
$font = 'arial'; // located next to the script
imagettftext($im, 20, 0, 20, 20, $fg, $font, $text);
答案 2 :(得分:0)
找到答案。正如Danak建议的那样,我使用记事本++将文件保存为UTF-8 Without BOM
。然后只需开始正确显示图像。