php动态生成图片示例。。

php动态生成图片示例。。



[复制到剪切板]
CODE:
<?php 
//建立图像
$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);
?> ;


如履薄冰

无法显示,请查看是不是程序有错误?