转载自:http://www.mofei.com.cn/h/460905.shtml,感谢原作者的辛苦工作。
//建立图像
$height = 200 ;$width =200 ;
$im = imagecreate($width,$height );
$white = imagecolorallocate($im,255,255,255 );
$black1 = imagecolorallocate($im,0,0,0 );
$black = imagecolorallocate($im,255,255,255 );
//在图上绘画
imagefill($im,0,0,$black1 );
imageline($im,0,0,$width,$height,$white );
imagestring($im,4,50,150,"Sales",$white );
//输出图像
header("Content-type: image/png" );
imagepng($im );
//清理
imagedestroy($im );
?>