|
发表于 2006-1-23 16:24:52
|
显示全部楼层
很有可能$name1和"Name:_____________"重叠在一起了
[code:1]
<?php
// 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);
// Replace path by your own font path
$font = 'arial.ttf';
// Add some shadow to the text
$stri=iconv("GB2312", "UTF-8", "Name:_____________");
imagettftext($im, 20, 0, 11, 21, $grey, $font, $stri);
$name1 = " " . "123" . " ";
// Add the text
unset($stri);
$stri=iconv("GB2312", "UTF-8", $name1);
imagettftext($im, 20, 0, 11, 21, $grey, $font, $stri);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
[/code:1] |
|