PHP를 이용하여 그림그리기를 연습해 보았습니다.
업무에 필요하진 않았지만.. 호기심이 발동해서.. ^^
[결과보기]
업무에 필요하진 않았지만.. 호기심이 발동해서.. ^^
<?
$height = 200;
$width = 200;
$im = ImageCreateTrueColor($width, $height);
$white = ImageColorAllocate($im, 255, 255, 255);
$blue = ImageColorAllocate($im, 0, 0, 64);
//paint
ImageFill($im, 0, 0, $blue);
ImageLine($im, 0, 0, $width, $height, $white);
ImageString($im,4, 50, 150, 'sales', $white);
$height = 200;
$width = 200;
$im = ImageCreateTrueColor($width, $height);
$white = ImageColorAllocate($im, 255, 255, 255);
$blue = ImageColorAllocate($im, 0, 0, 64);
//paint
ImageFill($im, 0, 0, $blue);
ImageLine($im, 0, 0, $width, $height, $white);
ImageString($im,4, 50, 150, 'sales', $white);
Header('Content-type:image/png');
ImagePng($im);
ImageDestroy($im);
?>
ImagePng($im);
ImageDestroy($im);
?>
[결과보기]
'Program is ... > with Web' 카테고리의 다른 글
[PHP] php로 엑셀(Excel)파일 만들기 (0) | 2007.07.10 |
---|---|
[Keywui.com] 동영상 UCC열풍은 계속되는 걸까? (0) | 2007.04.03 |
[PHP] 소켓통신 클래스 (0) | 2007.04.01 |
[JavaScript] 아이프레임, 팝업 사이즈 조절 (0) | 2007.04.01 |
asp 종료 (php의 exit) (0) | 2006.11.01 |
Google AJAX Search API (Beta) (0) | 2006.06.08 |
Naver Open API & Ajax (0) | 2006.06.05 |