比如这样的代码(file1.php):
<?php$img = imagecreatetruecolor(300,200);$color = imageColorAllocate($img, 200,0,0);//输出英文字:ImageString($img, 5, 100, 50, "abc123@#¥a", $color);//header("content-type: image/png"); imagePng( $img );imagedestroy($img);?>
imagePng( $img, "图片文件名" );
在imagepng(image,路径加上名字)