문자열이미지에 각종 필터를 적용한 결과

· 2014-08-03 (일) 16:26:22 · 5402 · 7
대단할것은 없는 강좌이지만,
제 강좌를 출처를 밝히고 외부로 퍼가는 것은 허용하지만,
다른 강좌의 자료나 책의 자료로 사용되거나 부분적인 인용은 허용하지 않습니다.
강좌는 php 5. 대를 기준으로 하며, 이미지 관련을 다룹니다.
이미지에 글을 쓰거나 이미지를 합치거나 하는 등의 내용을 다루어 볼까 합니다.
나중에는 간단한 짤방 만들기 같은 것도 할수 있지 않을까 싶습니다.

 

이미지관련 > 문자열이미지에 각종 필터를 적용한 결과

 

이번 내용은

문자열이미지에 여러가지 필터를 적용하고 그 결과를 확인해보는 내용입니다.

 

예제11 > study11.php

 

<?php

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

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



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

$filters = Array(
'IMG_FILTER_NEGATE'=>IMG_FILTER_NEGATE,
'IMG_FILTER_GRAYSCALE'=>IMG_FILTER_GRAYSCALE,
'IMG_FILTER_EDGEDETECT'=>IMG_FILTER_EDGEDETECT,
'IMG_FILTER_EMBOSS'=>IMG_FILTER_EMBOSS,
'IMG_FILTER_GAUSSIAN_BLUR'=>IMG_FILTER_GAUSSIAN_BLUR,
'IMG_FILTER_SELECTIVE_BLUR'=>IMG_FILTER_SELECTIVE_BLUR,
'IMG_FILTER_MEAN_REMOVAL'=>IMG_FILTER_MEAN_REMOVAL
);

$filters2 = Array(
'IMG_FILTER_BRIGHTNESS'=>Array(IMG_FILTER_BRIGHTNESS, 20, 40, 60, 80, 100),
'IMG_FILTER_CONTRAST'=>Array(IMG_FILTER_CONTRAST, 20, 40, 60, 80, 100),
'IMG_FILTER_SMOOTH'=>Array(IMG_FILTER_SMOOTH, -8, -6, -4, -2, 2, 4, 6, 8)
);

$args = range(0, 200, 100);



$save_file = 'temp/study11_1.jpg';

$im = imagecreatetruecolor(300, 300);
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);

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

image_text_align ($im, $font_file, $font_size, $black, $angle, $text, 'center', 'middle', $padding);

imagejpeg($im, $save_file);
imagedestroy($im);

?>

원본<br>
<img src="<?php echo $save_file; ?>"><br><br><br>

<?



$i = 2;
foreach($filters as $name => $filter){

    $im = @imagecreatefromjpeg($save_file);
    imagefilter($im, $filter);

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

?>

필터 : <?php echo $name; ?><br>
<img src="temp/study11_<?php echo $i; ?>.png"><br><br><br>

<?
    $i++;
}



foreach($filters2 as $name => $array){

    $filter = array_shift($array);

    foreach($array as $level) {

        $im = @imagecreatefromjpeg($save_file);
        imagefilter($im, $filter, $level);

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

?>

필터 : <?php echo $name; ?> 레벨 : <?php echo $level; ?> <br>
<img src="temp/study11_<?php echo $i; ?>.png"><br><br><br>

<?
        $i++;
    }
}



$name = 'IMG_FILTER_COLORIZE';
$filter = IMG_FILTER_COLORIZE;

foreach($args as $args1){

    foreach($args as $args2){

        foreach($args as $args3){

        $im = @imagecreatefromjpeg($save_file);
        imagefilter($im, $filter, $args1, $args2, $args3);

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

?>

필터 : <?php echo $name; ?> R : <?php echo $args1; ?> G : <?php echo $args2; ?> B : <?php echo $args3; ?> <br>
<img src="temp/study11_<?php echo $i; ?>.png"><br><br><br>

<?
            $i++;
        }
    }
}

?>

 

이전 내용과 동일합니다.

첨부파일

image.lib.20140801.php (9.3 KB) 32회 2014-08-03 16:26
|

댓글 7개

감사합니다.~
많은 필터가 있네요 ㅎㅎㅎ
근데 막상 뭐 딱히 쓸만한건 없어 ㅎㅎ
ㅎㅎㅎ 응용하면 뭔가나올것 같은데
응용하면 다 답이 있지.
암튼 저것만으론 뭘 제대로 해볼려면 부족해.
이미지 쪽은 약한 저는 참고로 ㅎㅎㅎ
문자 api짜고 정독해야겠네요
나중에 좋은 사이트 알려드릴게요
그래 고마워
2014-08-29 (금) 14:49:41
좋은 자료 감사합니다 :)
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
14-08-26 조회 3,365
14-08-26 조회 3,514
14-08-26 조회 4,078
14-08-26 조회 3,435
14-08-26 조회 3,684
14-08-26 조회 3,621
14-08-26 조회 3,387
14-08-26 조회 3,414
14-08-26 조회 3,449
14-08-26 조회 3,474
14-08-25 조회 4,002
14-08-16 조회 4,136
14-08-12 조회 4,027
14-08-05 조회 3,786
14-08-04 조회 4,546
14-08-04 조회 3,901
14-08-01 조회 4,940
14-07-29 조회 4,086
14-07-10 조회 3,959
14-07-08 조회 4,619
14-07-08 조회 4,194
14-07-05 조회 3,789
14-05-26 조회 5,315
14-05-26 조회 4,003
14-05-21 조회 4,465
14-05-19 조회 7,409
14-05-17 조회 6,626
14-04-30 조회 7,057
14-04-27 조회 4,460
14-04-26 조회 4,659
14-04-13 조회 4,797
14-04-13 조회 4,042
14-03-25 조회 6,397
14-03-25 조회 4,017
14-03-12 조회 3,826
14-03-12 조회 5,241
14-02-24 조회 4,537
13-12-27 조회 3,876
13-11-18 조회 4,206
13-11-18 조회 6,517
13-10-17 조회 4,527
13-10-03 조회 6,199
13-10-02 조회 4,064
13-09-29 조회 4,548
13-09-29 조회 3,936
13-09-17 조회 3,742
13-09-11 조회 5,924
13-09-09 조회 4,217
13-09-05 조회 9,254
13-08-23 조회 5,581
13-08-22 조회 5,100
13-08-22 조회 4,495
13-08-22 조회 4,957
13-08-17 조회 5,766
13-08-17 조회 4,061
13-07-11 조회 5,396
13-07-11 조회 4,341
13-07-08 조회 3,903
13-07-04 조회 4,148
13-07-04 조회 4,034
13-07-04 조회 3,909
13-07-03 조회 5,821
13-07-01 조회 3,670
13-07-01 조회 3,543
13-07-01 조회 4,450
13-06-21 조회 6,204
13-06-14 조회 4,779
13-06-11 조회 3,607
13-06-06 조회 5,266
13-06-05 조회 4,033
13-05-11 조회 4,767
13-05-10 조회 4,306
13-05-10 조회 4,614
13-05-10 조회 3,963
13-05-08 조회 4,311
13-05-08 조회 3,566
13-05-08 조회 3,949
13-05-08 조회 5,190
13-04-05 조회 5,976
13-03-31 조회 5,552
13-03-24 조회 3,914
13-03-24 조회 5,981
13-03-23 조회 3,570
13-03-21 조회 3,621
13-03-20 조회 3,724
13-03-20 조회 4,176
13-03-20 조회 3,671
13-03-20 조회 3,785
13-03-20 조회 6,020
13-03-20 조회 3,980
13-03-20 조회 4,693
13-03-19 조회 5,590
13-03-14 조회 3,724
13-03-14 조회 4,143
13-03-14 조회 4,434
13-03-08 조회 4,041
13-03-03 조회 4,461
13-02-24 조회 4,885
13-02-21 조회 4,592
13-02-19 조회 4,550