たとえば、このコード (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, "画像ファイル名" );
in imagepng(image, path plus name)