作者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