이미지 너비에 맞게 문자열의 자동 개행

· 2014-07-28 (월) 18:07:19 · 4542 · 2

대단할것은 없는 강좌이지만,
제 강좌를 출처를 밝히고 외부로 퍼가는 것은 허용하지만,
다른 강좌의 자료나 책의 자료로 사용되거나 부분적인 인용은 허용하지 않습니다.

강좌는 php 5. 대를 기준으로 하며, 이미지 관련을 다룹니다.
이미지에 글을 쓰거나 이미지를 합치거나 하는 등의 내용을 다루어 볼까 합니다.
나중에는 간단한 짤방 만들기 같은 것도 할수 있지 않을까 싶습니다.

이미지관련 > 이미지 너비에 맞게 문자열의 자동 개행   

 

문자열을 이미지에 그리게 될때  

문자열이 이미지 보다 긴데, 어느 시점에서 개행을 시켜야 할지 모를때가 많습니다.

폰트크기나 폰트에 따라 차이가 있기 때문에 정확히 맞추기란 매우 어렵습니다.

 

이번 내용에서는 어떤 긴 문자열에 대해 자동으로 개행한후 이미지에 그리는 부분을 다룹니다.

 

 

function image_box_auto_newline ($font_file, $font_size, $angle, &$text, $padding, $image_width) {

    $array = list($x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4, $width, $height, $x_gap, $y_gap) = image_box ($font_file, $font_size, $angle, $text);

    if (function_exists('mb_strlen') !== true || function_exists('mb_substr') !== true)
        return $array;


    if ($padding > 0)
        $width += ($padding * 2);

    if ($width > $image_width) {

        $text_array = preg_split("`\r?\n`", $text);

        foreach($text_array as $k => $text_){

            $temp = Array();
            $temp_text = '';
            $text_len = mb_strlen($text_, 'UTF-8');
            $j = 0;
            for ($i = 0; $i < $text_len; $i++) {

                $temp_text .= mb_substr($text_, $i, 1, 'UTF-8');

                list($x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4, $width, $height, $x_gap, $y_gap) = image_box ($font_file, $font_size, $angle, $temp_text);

                if ($padding > 0)
                    $width += ($padding * 2);

                if ($width > $image_width) {

                    $temp[] = mb_substr($text_, $j, $i - $j, 'UTF-8');
                    $temp_text = mb_substr($text_, $i, 1, 'UTF-8');
                    $j = $i;
                }
            }

            $temp[] = $temp_text;

            $text_array[$k] = implode(PHP_EOL, $temp);;
        }

        $text = implode(PHP_EOL, $text_array);
        $array = list($x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4, $width, $height, $x_gap, $y_gap) = image_box ($font_file, $font_size, $angle, $text);
    }

    return $array;
}

 

image.lib.20140728.php 파일에는 위의 함수가 추가 되었습니다.

 

image_box_auto_newline ($font_file, $font_size, $angle, &$text, $padding, $image_width)


주어진 문자열이 주어진 이미지 너비보다 크면 알아서 문자열의 길이를 재어서 적정한 위치에 개행을 시키는 함수 입니다.

 

$text 앞에 & 를 붙이는 것은 참조 표현이며

함수의 반환값으로 $text 를 반환하지 않고 함수내에서 값이 변하면  

원래 $text 도 변하도록 하기 위해서 참조를 사용하였습니다.

 

if (function_exists('mb_strlen') !== true || function_exists('mb_substr') !== true)
    return $array;

mbstring 관련 함수가 지원되어야만 사용가능하므로 위와같이 처리하였습니다.

phpinfo(); 로 php 상태를 찍어봐서 mbstring 이 보이고 enable 상태이어야 합니다.

 

if ($padding > 0)
        $width += ($padding * 2);

패딩이 0 보다 클때 문자열의 길이에 패딩을 두번 더해줍니다

 

기존의 image_text (&$image, $font_file, $font_size, $font_color, $angle, $text, $align='left', $valign='top', $padding=0)


에서 $auto_newline=true 가 추가 되었습니다.

 

if ($auto_newline === true) {

    $array = list($x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4, $width, $height, $x_gap, $y_gap) = image_box_auto_newline ($font_file, $font_size, $angle, $text, $padding, $image_width);
}
else {

    $array = list($x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4, $width, $height, $x_gap, $y_gap) = image_box ($font_file, $font_size, $angle, $text);
}

 

else 부분은 이전의 내용과 동일하고

auto_newline === true 일때는 이번에 새로만든 image_box_auto_newline 함수를 호출합니다.

 

그리고 $align => center 일때와 $valign => middle 일때 계산식이 조금 수정되었습니다.

gap  부분을 나눈후에 처리되도록 하였습니다.

 

$x = ceil(($image_width - $width) / 2) + $x_gap;

$y = ceil(($image_height + $height) / 2) + $y_gap;

 

 

예제6 > study6.php

 

<?php

@error_reporting( E_ALL );
header("Content-Type: text/html; charset=UTF-8");

include_once('image.lib.20140728.php');



$font_file = './Daum_Regular.ttf';
$font_size = 15;
$angle = 0;
$text = '동해물과 백두산이 마르고 닳도록 하느님이 보우하사 우리나라 만세';
$padding = 10;

$array = list($x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4, $width, $height, $x_gap, $y_gap) = image_box ($font_file, $font_size, $angle, $text);

?>

폰트파일 : <?php echo $font_file?><br>

폰트크기 : <?php echo $font_size?> px<br>

기울기 : <?php echo $angle?><br>

문자열 : <?php echo nl2br($text)?><br>

패딩 : <?php echo $padding?> px<br>
<br>

<?php

$aligns = Array('left', 'center', 'right');
$valigns = Array('top', 'middle', 'bottom');

$i = 1;
foreach($aligns as $align){

    foreach($valigns as $valign){

        $im = imagecreatetruecolor(300, 300);
        $red = imagecolorallocate($im, 0xFF, 0x00, 0x00);
        $blue = imagecolorallocate($im, 0x00, 0x80, 0xFF);
        $white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
        $black = imagecolorallocate($im, 0x00, 0x00, 0x00);
        $gray = imagecolorallocate($im, 0XD0, 0XD0, 0XD0);

        imagefilledrectangle($im, 0, 0, 299, 299, $gray);

        image_text ($im, $font_file, $font_size, $black, $angle, $text, $align, $valign, $padding);

        imagepng($im, 'temp/study6_' . $i . '.png');
        imagedestroy($im);

        ?>

        <br><br>
        <strong><?php echo $align; ?>,  <?php echo $valign; ?></strong><br>

        <img src='temp/study6_<?php echo $i; ?>.png?<?php echo time();?>'>
        <br><br>

        <?php

        $i++;
    }
}

?>

 

 

위 예제를 실행 하여 보면 문자열이 개행이 되어 각 위치별로 그려짐을 알수 있습니다. 

예제를 실행할 때에는 temp 디렉토리를 생성하고 퍼미션을 777 로 주어야 합니다.  

 

다음에는  

left center right 일때

개행된 부분까지도 같이 정렬 되는 부분을 다룰 예정입니다. 

 

첨부파일

Daum_Regular.ttf (1.2 MB) 4회 2014-07-28 18:07
|

댓글 2개

댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
14-08-26 조회 3,372
14-08-26 조회 3,529
14-08-26 조회 4,083
14-08-26 조회 3,451
14-08-26 조회 3,690
14-08-26 조회 3,624
14-08-26 조회 3,389
14-08-26 조회 3,441
14-08-26 조회 3,453
14-08-26 조회 3,490
14-08-25 조회 4,007
14-08-16 조회 4,141
14-08-12 조회 4,033
14-08-05 조회 3,805
14-08-04 조회 4,554
14-08-04 조회 3,905
14-08-01 조회 4,959
14-07-29 조회 4,097
14-07-10 조회 3,989
14-07-08 조회 4,634
14-07-08 조회 4,196
14-07-05 조회 3,796
14-05-26 조회 5,320
14-05-26 조회 4,026
14-05-21 조회 4,470
14-05-19 조회 7,415
14-05-17 조회 6,660
14-04-30 조회 7,078
14-04-27 조회 4,482
14-04-26 조회 4,672
14-04-13 조회 4,807
14-04-13 조회 4,060
14-03-25 조회 6,413
14-03-25 조회 4,040
14-03-12 조회 3,847
14-03-12 조회 5,267
14-02-24 조회 4,568
13-12-27 조회 3,898
13-11-18 조회 4,227
13-11-18 조회 6,527
13-10-17 조회 4,538
13-10-03 조회 6,203
13-10-02 조회 4,089
13-09-29 조회 4,567
13-09-29 조회 3,945
13-09-17 조회 3,748
13-09-11 조회 5,938
13-09-09 조회 4,219
13-09-05 조회 9,267
13-08-23 조회 5,591
13-08-22 조회 5,114
13-08-22 조회 4,501
13-08-22 조회 4,961
13-08-17 조회 5,830
13-08-17 조회 4,068
13-07-11 조회 5,404
13-07-11 조회 4,349
13-07-08 조회 3,913
13-07-04 조회 4,154
13-07-04 조회 4,037
13-07-04 조회 3,922
13-07-03 조회 5,832
13-07-01 조회 3,685
13-07-01 조회 3,566
13-07-01 조회 4,475
13-06-21 조회 6,216
13-06-14 조회 4,781
13-06-11 조회 3,625
13-06-06 조회 5,286
13-06-05 조회 4,054
13-05-11 조회 4,780
13-05-10 조회 4,325
13-05-10 조회 4,616
13-05-10 조회 3,970
13-05-08 조회 4,330
13-05-08 조회 3,587
13-05-08 조회 3,972
13-05-08 조회 5,201
13-04-05 조회 5,983
13-03-31 조회 5,574
13-03-24 조회 3,920
13-03-24 조회 6,003
13-03-23 조회 3,582
13-03-21 조회 3,641
13-03-20 조회 3,727
13-03-20 조회 4,191
13-03-20 조회 3,675
13-03-20 조회 3,808
13-03-20 조회 6,022
13-03-20 조회 3,983
13-03-20 조회 4,700
13-03-19 조회 5,611
13-03-14 조회 3,732
13-03-14 조회 4,157
13-03-14 조회 4,453
13-03-08 조회 4,045
13-03-03 조회 4,478
13-02-24 조회 4,910
13-02-21 조회 4,612
13-02-19 조회 4,555