메뉴 건너뛰기

프로그램언어

조회 수 29813 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

간단한 예제...


<?php 
/*************************************************************** 
프로그램명 : Text를 GD 이미지로 뿌리기 
작성자 : 윤영식 
***************************************************************/ 
if (!$fontsize) { $fontsize=11; } 

Header ("Content-type: image/png"); 

$bound = ImageTTFBBox($fontsize,0,"fonts/HMTGR.TTF",stripslashes(iconv("EUC-KR","UTF-8",$text))); 
$imgWidth = $bound[2]+2; 
$imgHeight = $fontsize*1.2; 

$im=ImageCreate($imgWidth,$imgHeight); 
$white = ImageColorAllocate ($im, 255, 255, 255); 
$green = ImageColorAllocate ($im, 88, 88, 88); 

ImageTTFText($im,$fontsize,0,0,$imgHeight-1,$green,"fonts/HMTGR.TTF",stripslashes(iconv("EUC-KR","UTF-8",$text))); 

ImagePNG($im); 
ImageDestroy($im); 
?> 


하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved