Computer Science
php 그래프 그리기
졸리운_곰
2009. 4. 22. 16:40
php 그래프 그리기 ![]()
<?
header("Content-Type:image/jpeg");
$img = ImageCreate(200,200);
$black = ImageColorAllocate($img,0,0,0);
$white = ImageColorAllocate($img,255,255,255);
Imageline($img, 10,50,95,130,$white);
Imageline($img, 95,130,190,150,$white);
imagejpeg($img);
imagedestroy($img);
//사각형 이미지그래프 그리기
imagefilledrectangle($img,10,50,50,200,$black);
-string($img,10,120,0,"_",$색);
?>
[출처] php 그래프 그리기|작성자 deepimpact