Global It Leader!!



 
 

PHP 문자를 이미지로 나타내기 - 신문기사 제목

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 7,091회 작성일 11-04-18 17:43

본문

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>imagettfbbox 한글 안깨지게</title>
</head>
<body>
<?
    $text = "text를 이미지로 변환하기"; 
    $text = iconv("EUC-KR", "UTF-8", $text); //

    $padding = 10; #10px

    $fsize = 12; #font size 12 pixels

    $ttf  ="./NanumGothic.ttf"; #path to windows ttf font file

    $size = imagettfbbox($fsize, 0, $ttf, $text);

    $xsize = abs($size[0]) + abs($size[2])+($padding*2);
    $ysize = abs($size[5]) + abs($size[1])+($padding*2);

    $image = imagecreate($xsize, $ysize);


    $white = imagecolorallocate ($image, 255, 255, 255);
    $black = imagecolorallocate ($image, 0, 0, 0);
    imagefilledrectangle ($image, 0, 0, $xsize, $ysize, $white);

    imagettftext($image, $fsize, 0, $padding, $fsize+$padding, $black, $ttf, $text);
                       
           
    #save to file
    imagejpeg($image,"./screenshot.jpg",85); #85%quality
    echo "<img src=\"./screenshot.jpg\">";
?>
</body>
</html>

첨부파일

  • tahoma.ttf (102.8K) 44회 다운로드 | DATE : 2011-04-18 17:43:19

댓글목록

등록된 댓글이 없습니다.

전체 440
게시물 검색
컴퓨터언어 목록
번호 제목 글쓴이 조회 날짜
40 HTML no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6299 05-10
39 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7022 05-10
38 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7924 05-07
37 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7031 05-03
36 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7633 04-29
열람중 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7092 04-18
34 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6846 04-05
33 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7754 03-31
32 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7024 02-25
31 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6773 12-16
30 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7661 11-10
29 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7307 11-10
28 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6884 11-10
27 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9356 10-20
26 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9471 10-14
25 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6895 10-03
24 그누보드스킨 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7848 09-29
23 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9255 09-20
22 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9023 09-18
21 HTML no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7250 09-04