作者magicfx (Photoshop 画油画)
看板ZooStudy
标题PHP
时间Tue May 13 15:00:24 2003
<?
header("content-type: image/jpeg");
$image = imagecreate(200, 200);
$red = imagecolorallocate ($image, 255 ,0 , 0);
$blue = imagecolorallocate ($image, 0 ,0 , 255);
imageline($image, 0, 0, 199, 199, $blue);
imagefill($image, 0, 199, $blue);
imagejpeg($image);
?>
--
※ 发信站: 批踢踢实业坊(ptt.csie.ntu.edu.tw)
◆ From: 140.112.7.59