imagettftext 한글 처리

imagettftext

운영자 | 기사입력 2015/01/20 [06:43]
PHP >
필자의 다른기사 보기 인쇄하기 메일로 보내기 글자 크게 글자 작게
imagettftext 한글 처리
imagettftext
 
운영자   기사입력  2015/01/20 [06:43]

 

 

<?php
header('Content-Type: image/png');

// Create the image
$im = imagecreatetruecolor(400, 30);

// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);

// The text to draw
$text ="한글은 유니코드로 변경하여 처리하면 된다. ";
$text = iconv("EUC-KR","UTF-8",$text);
// Replace path by your own font path
$font = $DOCUMENT_ROOT.'/font/NanumBarunGothicBold.ttf';

// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $black, $font, $text);

// Add the text
//imagettftext($im, 20, 0, 10, 20, $grey, $font, $text);

// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);


?>

트위터 트위터 페이스북 페이스북 카카오톡 카카오톡
기사입력: 2015/01/20 [06:43]  최종편집: ⓒ iwav
 
 
PHP 많이 본 기사