/home/mjc1/public_html/lib/thumbnail.lib.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<?php
if (!defined('_GNUBOARD_')) exit;

@
ini_set('memory_limit''512M');

// 게시글리스트 썸네일 생성
function get_list_thumbnail($bo_table$wr_id$thumb_width$thumb_height$is_create=false$is_crop=true$crop_mode='center'$is_sharpen=false$um_value='80/0.5/3')
{
    global 
$g5$config;
    
$filename $alt "";
    
$edt false;

    
$sql " select bf_file, bf_content from {$g5['board_file_table']}
                where bo_table = '
$bo_table' and wr_id = '$wr_id' and bf_type between '1' and '3' order by bf_no limit 0, 1 ";
    
$row sql_fetch($sql);

    if(
$row['bf_file']) {
        
$filename $row['bf_file'];
        
$filepath G5_DATA_PATH.'/file/'.$bo_table;
        
$alt get_text($row['bf_content']);
    } else {
        
$write_table $g5['write_prefix'].$bo_table;
        
$sql " select wr_content from $write_table where wr_id = '$wr_id' ";
        
$write sql_fetch($sql);
        
$matches get_editor_image($write['wr_content'], false);
        
$edt true;

        for(
$i=0$i<count($matches[1]); $i++)
        {
            
// 이미지 path 구함
            
$p parse_url($matches[1][$i]);
            if(
strpos($p['path'], '/'.G5_DATA_DIR.'/') != 0)
                
$data_path preg_replace('/^\/.*\/'.G5_DATA_DIR.'/''/'.G5_DATA_DIR$p['path']);
            else
                
$data_path $p['path'];

            
$srcfile G5_PATH.$data_path;

            if(
preg_match("/\.({$config['cf_image_extension']})$/i"$srcfile) && is_file($srcfile)) {
                
$size = @getimagesize($srcfile);
                if(empty(
$size))
                    continue;

                
$filename basename($srcfile);
                
$filepath dirname($srcfile);

                
preg_match("/alt=[\"\']?([^\"\']*)[\"\']?/"$matches[0][$i], $malt);
                
$alt get_text($malt[1]);

                break;
            }
        }
    }

    if(!
$filename)
        return 
false;

    
$tname thumbnail($filename$filepath$filepath$thumb_width$thumb_height$is_create$is_crop$crop_mode$is_sharpen$um_value);

    if(
$tname) {
        if(
$edt) {
            
$src G5_URL.str_replace($filename$tname$data_path);
        } else {
            
$src G5_DATA_URL.'/file/'.$bo_table.'/'.$tname;
        }
    } else {
        return 
false;
    }

    
$thumb = array("src"=>$src"alt"=>$alt);

    return 
$thumb;
}

// 게시글보기 썸네일 생성
function get_view_thumbnail($contents$thumb_width=0)
{
    global 
$board$config;

    if (!
$thumb_width)
        
$thumb_width $board['bo_image_width'];

    
// $contents 중 img 태그 추출
    
$matches get_editor_image($contentstrue);

    if(empty(
$matches))
        return 
$contents;

    for(
$i=0$i<count($matches[1]); $i++) {

        
$img $matches[1][$i];
        
preg_match("/src=[\'\"]?([^>\'\"]+[^>\'\"]+)/i"$img$m);
        
$src $m[1];
        
preg_match("/style=[\"\']?([^\"\'>]+)/i"$img$m);
        
$style $m[1];
        
preg_match("/width:\s*(\d+)px/"$style$m);
        
$width $m[1];
        
preg_match("/height:\s*(\d+)px/"$style$m);
        
$height $m[1];
        
preg_match("/alt=[\"\']?([^\"\']*)[\"\']?/"$img$m);
        
$alt get_text($m[1]);

        
// 이미지 path 구함
        
$p parse_url($src);
        if(
strpos($p['path'], '/'.G5_DATA_DIR.'/') != 0)
            
$data_path preg_replace('/^\/.*\/'.G5_DATA_DIR.'/''/'.G5_DATA_DIR$p['path']);
        else
            
$data_path $p['path'];

        
$srcfile G5_PATH.$data_path;

        if(
is_file($srcfile)) {
            
$size = @getimagesize($srcfile);
            if(empty(
$size))
                continue;

            
// jpg 이면 exif 체크
            
if($size[2] == && function_exists('exif_read_data')) {
                
$degree 0;
                
$exif = @exif_read_data($srcfile);
                if(!empty(
$exif['Orientation'])) {
                    switch(
$exif['Orientation']) {
                        case 
8:
                            
$degree 90;
                            break;
                        case 
3:
                            
$degree 180;
                            break;
                        case 
6:
                            
$degree = -90;
                            break;
                    }

                    
// 세로사진의 경우 가로, 세로 값 바꿈
                    
if($degree == 90 || $degree == -90) {
                        
$tmp $size;
                        
$size[0] = $tmp[1];
                        
$size[1] = $tmp[0];
                    }
                }
            }

            
// 원본 width가 thumb_width보다 작다면
            
if($size[0] <= $thumb_width)
                continue;

            
// Animated GIF 체크
            
$is_animated false;
            if(
$size[2] == 1) {
                
$is_animated is_animated_gif($srcfile);
            }

            
// 썸네일 높이
            
$thumb_height round(($thumb_width $size[1]) / $size[0]);
            
$filename basename($srcfile);
            
$filepath dirname($srcfile);

            
// 썸네일 생성
            
if(!$is_animated)
                
$thumb_file thumbnail($filename$filepath$filepath$thumb_width$thumb_heightfalse);
            else
                
$thumb_file $filename;

            if(!
$thumb_file)
                continue;

            if (
$width) {
                
$thumb_tag '<img src="'.G5_URL.str_replace($filename$thumb_file$data_path).'" alt="'.$alt.'" width="'.$width.'" height="'.$height.'"/>';
            } else {
                
$thumb_tag '<img src="'.G5_URL.str_replace($filename$thumb_file$data_path).'" alt="'.$alt.'"/>';
            }

            
// $img_tag에 editor 경로가 있으면 원본보기 링크 추가
            
$img_tag $matches[0][$i];
            if(
strpos($img_tagG5_DATA_DIR.'/'.G5_EDITOR_DIR) && preg_match("/\.({$config['cf_image_extension']})$/i"$filename)) {
                
$imgurl str_replace(G5_URL""$src);
                
$thumb_tag '<a href="'.G5_BBS_URL.'/view_image.php?fn='.urlencode($imgurl).'" target="_blank" class="view_image">'.$thumb_tag.'</a>';
            }

            
$contents str_replace($img_tag$thumb_tag$contents);
        }
    }

    return 
$contents;
}

function 
thumbnail_new($filename$source_path$target_path$thumb_width$thumb_height$is_create$is_crop=true$crop_mode='center'$is_sharpen=false$um_value='80/0.5/3')
{
    global 
$g5;

    if(!
$thumb_width && !$thumb_height)
        return;

    
$source_file "$source_path/$filename";

    if(!
is_file($source_file)) // 원본 파일이 없다면
        
return;

    
$size = @getimagesize($source_file);
    if(
$size[2] < || $size[2] > 3// gif, jpg, png 에 대해서만 적용
        
return;

    if (!
is_dir($target_path)) {
        @
mkdir($target_pathG5_DIR_PERMISSION);
        @
chmod($target_pathG5_DIR_PERMISSION);
    }

    
// 디렉토리가 존재하지 않거나 쓰기 권한이 없으면 썸네일 생성하지 않음
    
if(!(is_dir($target_path) && is_writable($target_path)))
        return 
'';

    
// Animated GIF는 썸네일 생성하지 않음
    
if($size[2] == 1) {
        if(
is_animated_gif($source_file))
            return 
basename($source_file);
    }

    
$ext = array(=> 'gif'=> 'jpg'=> 'png');

    
$thumb_filename preg_replace("/\.[^\.]+$/i"""$filename); // 확장자제거
    
$thumb_file "$target_path/thumb-{$thumb_filename}_{$thumb_width}x{$thumb_height}.".$ext[$size[2]];

    
$thumb_time = @filemtime($thumb_file);
    
$source_time = @filemtime($source_file);

    if (
file_exists($thumb_file)) {
        if (
$is_create == false && $source_time $thumb_time) {
            return 
basename($thumb_file);
        }
    }

    
$obj_img3 = new thumbnail_images();
    
$obj_img3->PathImgOld $source_file;
    
$obj_img3->PathImgNew $thumb_file;
    
$obj_img3->NewWidth $thumb_width;
    
//$obj_img3->NewHeight = $thumb_width;
    
if (!$obj_img3->create_thumbnail_images()) {
        return 
0
    } else {
        return 
basename($thumb_file);
    }

    
//echo $thumb_file; exit;



}

function 
thumbnail($filename$source_path$target_path$thumb_width$thumb_height$is_create$is_crop=true$crop_mode='center'$is_sharpen=false$um_value='80/0.5/3')
{
    global 
$g5;

    if(!
$thumb_width && !$thumb_height)
        return;

    
$source_file "$source_path/$filename";

    if(!
is_file($source_file)) // 원본 파일이 없다면
        
return;

    
$size = @getimagesize($source_file);
    if(
$size[2] < || $size[2] > 3// gif, jpg, png 에 대해서만 적용
        
return;

    if (!
is_dir($target_path)) {
        @
mkdir($target_pathG5_DIR_PERMISSION);
        @
chmod($target_pathG5_DIR_PERMISSION);
    }

    
// 디렉토리가 존재하지 않거나 쓰기 권한이 없으면 썸네일 생성하지 않음
    
if(!(is_dir($target_path) && is_writable($target_path)))
        return 
'';

    
// Animated GIF는 썸네일 생성하지 않음
    
if($size[2] == 1) {
        if(
is_animated_gif($source_file))
            return 
basename($source_file);
    }

    
$ext = array(=> 'gif'=> 'jpg'=> 'png');

    
$thumb_filename preg_replace("/\.[^\.]+$/i"""$filename); // 확장자제거
    
$thumb_file "$target_path/thumb-{$thumb_filename}_{$thumb_width}x{$thumb_height}.".$ext[$size[2]];

    
$thumb_time = @filemtime($thumb_file);
    
$source_time = @filemtime($source_file);

    if (
file_exists($thumb_file)) {
        if (
$is_create == false && $source_time $thumb_time) {
            return 
basename($thumb_file);
        }
    }

    
// 원본파일의 GD 이미지 생성
    
$src null;
    
$degree 0;

    if (
$size[2] == 1) {
        
$src imagecreatefromgif($source_file);
        
$src_transparency imagecolortransparent($src);
    } else if (
$size[2] == 2) {
        
$src imagecreatefromjpeg($source_file);

        if(
function_exists('exif_read_data')) {
            
// exif 정보를 기준으로 회전각도 구함
            
$exif = @exif_read_data($source_file);
            if(!empty(
$exif['Orientation'])) {
                switch(
$exif['Orientation']) {
                    case 
8:
                        
$degree 90;
                        break;
                    case 
3:
                        
$degree 180;
                        break;
                    case 
6:
                        
$degree = -90;
                        break;
                }

                
// 회전각도 있으면 이미지 회전
                
if($degree) {
                    
$src imagerotate($src$degree0);

                    
// 세로사진의 경우 가로, 세로 값 바꿈
                    
if($degree == 90 || $degree == -90) {
                        
$tmp $size;
                        
$size[0] = $tmp[1];
                        
$size[1] = $tmp[0];
                    }
                }
            }
        }
    } else if (
$size[2] == 3) {
        
$src imagecreatefrompng($source_file);
        
imagealphablending($srctrue);
    } else {
        return;
    }

    if(!
$src)
        return;

    
$is_large true;
    
// width, height 설정
    
if($thumb_width) {
        if(!
$thumb_height) {
            
$thumb_height round(($thumb_width $size[1]) / $size[0]);
        } else {
            if(
$size[0] < $thumb_width || $size[1] < $thumb_height)
                
$is_large false;
        }
    } else {
        if(
$thumb_height) {
            
$thumb_width round(($thumb_height $size[0]) / $size[1]);
        }
    }

    
$dst_x 0;
    
$dst_y 0;
    
$src_x 0;
    
$src_y 0;
    
$dst_w $thumb_width;
    
$dst_h $thumb_height;
    
$src_w $size[0];
    
$src_h $size[1];

    
$ratio $dst_h $dst_w;

    if(
$is_large) {
        
// 크롭처리
        
if($is_crop) {
            switch(
$crop_mode)
            {
                case 
'center':
                    if(
$size[1] / $size[0] >= $ratio) {
                        
$src_h round($src_w $ratio);
                        
$src_y round(($size[1] - $src_h) / 2);
                    } else {
                        
$src_w round($size[1] / $ratio);
                        
$src_x round(($size[0] - $src_w) / 2);
                    }
                    break;
                default:
                    if(
$size[1] / $size[0] >= $ratio) {
                        
$src_h round($src_w $ratio);
                    } else {
                        
$src_w round($size[1] / $ratio);
                    }
                    break;
            }
        }

        
$dst imagecreatetruecolor($dst_w$dst_h);

        if(
$size[2] == 3) {
            
imagealphablending($dstfalse);
            
imagesavealpha($dsttrue);
        } else if(
$size[2] == 1) {
            
$palletsize imagecolorstotal($src);
            if(
$src_transparency >= && $src_transparency $palletsize) {
                
$transparent_color   imagecolorsforindex($src$src_transparency);
                
$current_transparent imagecolorallocate($dst$transparent_color['red'], $transparent_color['green'], $transparent_color['blue']);
                
imagefill($dst00$current_transparent);
                
imagecolortransparent($dst$current_transparent);
            }
        }
    } else {
        
$dst imagecreatetruecolor($dst_w$dst_h);
        
$bgcolor imagecolorallocate($dst255255255); // 배경색

        
if($src_w $dst_w) {
            if(
$src_h >= $dst_h) {
                
$dst_x round(($dst_w $src_w) / 2);
                
$src_h $dst_h;
            } else {
                
$dst_x round(($dst_w $src_w) / 2);
                
$dst_y round(($dst_h $src_h) / 2);
                
$dst_w $src_w;
                
$dst_h $src_h;
            }
        } else {
            if(
$src_h $dst_h) {
                
$dst_y round(($dst_h $src_h) / 2);
                
$dst_h $src_h;
                
$src_w $dst_w;
            }
        }

        if(
$size[2] == 3) {
            
$bgcolor imagecolorallocatealpha($dst000127);
            
imagefill($dst00$bgcolor);
            
imagealphablending($dstfalse);
            
imagesavealpha($dsttrue);
        } else if(
$size[2] == 1) {
            
$palletsize imagecolorstotal($src);
            if(
$src_transparency >= && $src_transparency $palletsize) {
                
$transparent_color   imagecolorsforindex($src$src_transparency);
                
$current_transparent imagecolorallocate($dst$transparent_color['red'], $transparent_color['green'], $transparent_color['blue']);
                
imagefill($dst00$current_transparent);
                
imagecolortransparent($dst$current_transparent);
            } else {
                
imagefill($dst00$bgcolor);
            }
        } else {
            
imagefill($dst00$bgcolor);
        }
    }

    
imagecopyresampled($dst$src$dst_x$dst_y$src_x$src_y$dst_w$dst_h$src_w$src_h);

    
// sharpen 적용
    
if($is_sharpen && $is_large) {
        
$val explode('/'$um_value);
        
UnsharpMask($dst$val[0], $val[1], $val[2]);
    }

    if(
$size[2] == 1) {
        
imagegif($dst$thumb_file);
    } else if(
$size[2] == 3) {
        if(!
defined('G5_THUMB_PNG_COMPRESS'))
            
$png_compress 5;
        else
            
$png_compress G5_THUMB_PNG_COMPRESS;

        
imagepng($dst$thumb_file$png_compress);
    } else {
        if(!
defined('G5_THUMB_JPG_QUALITY'))
            
$jpg_quality 90;
        else
            
$jpg_quality G5_THUMB_JPG_QUALITY;

        
imagejpeg($dst$thumb_file$jpg_quality);
    }

    
chmod($thumb_fileG5_FILE_PERMISSION); // 추후 삭제를 위하여 파일모드 변경

    
imagedestroy($src);
    
imagedestroy($dst);

    return 
basename($thumb_file);
}

function 
UnsharpMask($img$amount$radius$threshold)    {

/*
출처 : http://vikjavev.no/computing/ump.php
New:
- In version 2.1 (February 26 2007) Tom Bishop has done some important speed enhancements.
- From version 2 (July 17 2006) the script uses the imageconvolution function in PHP
version >= 5.1, which improves the performance considerably.


Unsharp masking is a traditional darkroom technique that has proven very suitable for
digital imaging. The principle of unsharp masking is to create a blurred copy of the image
and compare it to the underlying original. The difference in colour values
between the two images is greatest for the pixels near sharp edges. When this
difference is subtracted from the original image, the edges will be
accentuated.

The Amount parameter simply says how much of the effect you want. 100 is 'normal'.
Radius is the radius of the blurring circle of the mask. 'Threshold' is the least
difference in colour values that is allowed between the original and the mask. In practice
this means that low-contrast areas of the picture are left unrendered whereas edges
are treated normally. This is good for pictures of e.g. skin or blue skies.

Any suggenstions for improvement of the algorithm, expecially regarding the speed
and the roundoff errors in the Gaussian blur process, are welcome.

*/

////////////////////////////////////////////////////////////////////////////////////////////////
////
////                  Unsharp Mask for PHP - version 2.1.1
////
////    Unsharp mask algorithm by Torstein Hønsi 2003-07.
////             thoensi_at_netcom_dot_no.
////               Please leave this notice.
////
///////////////////////////////////////////////////////////////////////////////////////////////



    // $img is an image that is already created within php using
    // imgcreatetruecolor. No url! $img must be a truecolor image.

    // Attempt to calibrate the parameters to Photoshop:
    
if ($amount 500)    $amount 500;
    
$amount $amount 0.016;
    if (
$radius 50)    $radius 50;
    
$radius $radius 2;
    if (
$threshold 255)    $threshold 255;

    
$radius abs(round($radius));     // Only integers make sense.
    
if ($radius == 0) {
        return 
$imgimagedestroy($img); break;        }
    
$w imagesx($img); $h imagesy($img);
    
$imgCanvas imagecreatetruecolor($w$h);
    
$imgBlur imagecreatetruecolor($w$h);


    
// Gaussian blur matrix:
    //
    //    1    2    1
    //    2    4    2
    //    1    2    1
    //
    //////////////////////////////////////////////////


    
if (function_exists('imageconvolution')) { // PHP >= 5.1
            
$matrix = array(
            array( 
12),
            array( 
24),
            array( 
12)
        );
        
$divisor array_sum(array_map('array_sum'$matrix));
        
$offset 0;

        
imagecopy ($imgBlur$img0000$w$h);
        
imageconvolution($imgBlur$matrix$divisor$offset);
    }
    else {

    
// Move copies of the image around one pixel at the time and merge them with weight
    // according to the matrix. The same matrix is simply repeated for higher radii.
        
for ($i 0$i $radius$i++)    {
            
imagecopy ($imgBlur$img0010$w 1$h); // left
            
imagecopymerge ($imgBlur$img1000$w$h50); // right
            
imagecopymerge ($imgBlur$img0000$w$h50); // center
            
imagecopy ($imgCanvas$imgBlur0000$w$h);

            
imagecopymerge ($imgBlur$imgCanvas0001$w$h 133.33333 ); // up
            
imagecopymerge ($imgBlur$imgCanvas0100$w$h25); // down
        
}
    }

    if(
$threshold>0){
        
// Calculate the difference between the blurred pixels and the original
        // and set the pixels
        
for ($x 0$x $w-1$x++)    { // each row
            
for ($y 0$y $h$y++)    { // each pixel

                
$rgbOrig ImageColorAt($img$x$y);
                
$rOrig = (($rgbOrig >> 16) & 0xFF);
                
$gOrig = (($rgbOrig >> 8) & 0xFF);
                
$bOrig = ($rgbOrig 0xFF);

                
$rgbBlur ImageColorAt($imgBlur$x$y);

                
$rBlur = (($rgbBlur >> 16) & 0xFF);
                
$gBlur = (($rgbBlur >> 8) & 0xFF);
                
$bBlur = ($rgbBlur 0xFF);

                
// When the masked pixels differ less from the original
                // than the threshold specifies, they are set to their original value.
                
$rNew = (abs($rOrig $rBlur) >= $threshold)
                    ? 
max(0min(255, ($amount * ($rOrig $rBlur)) + $rOrig))
                    : 
$rOrig;
                
$gNew = (abs($gOrig $gBlur) >= $threshold)
                    ? 
max(0min(255, ($amount * ($gOrig $gBlur)) + $gOrig))
                    : 
$gOrig;
                
$bNew = (abs($bOrig $bBlur) >= $threshold)
                    ? 
max(0min(255, ($amount * ($bOrig $bBlur)) + $bOrig))
                    : 
$bOrig;



                if ((
$rOrig != $rNew) || ($gOrig != $gNew) || ($bOrig != $bNew)) {
                        
$pixCol ImageColorAllocate($img$rNew$gNew$bNew);
                        
ImageSetPixel($img$x$y$pixCol);
                    }
            }
        }
    }
    else{
        for (
$x 0$x $w$x++)    { // each row
            
for ($y 0$y $h$y++)    { // each pixel
                
$rgbOrig ImageColorAt($img$x$y);
                
$rOrig = (($rgbOrig >> 16) & 0xFF);
                
$gOrig = (($rgbOrig >> 8) & 0xFF);
                
$bOrig = ($rgbOrig 0xFF);

                
$rgbBlur ImageColorAt($imgBlur$x$y);

                
$rBlur = (($rgbBlur >> 16) & 0xFF);
                
$gBlur = (($rgbBlur >> 8) & 0xFF);
                
$bBlur = ($rgbBlur 0xFF);

                
$rNew = ($amount * ($rOrig $rBlur)) + $rOrig;
                    if(
$rNew>255){$rNew=255;}
                    elseif(
$rNew<0){$rNew=0;}
                
$gNew = ($amount * ($gOrig $gBlur)) + $gOrig;
                    if(
$gNew>255){$gNew=255;}
                    elseif(
$gNew<0){$gNew=0;}
                
$bNew = ($amount * ($bOrig $bBlur)) + $bOrig;
                    if(
$bNew>255){$bNew=255;}
                    elseif(
$bNew<0){$bNew=0;}
                
$rgbNew = ($rNew << 16) + ($gNew <<8) + $bNew;
                    
ImageSetPixel($img$x$y$rgbNew);
            }
        }
    }
    
imagedestroy($imgCanvas);
    
imagedestroy($imgBlur);

    return 
true;

}

function 
is_animated_gif($filename) {
    if(!(
$fh = @fopen($filename'rb')))
        return 
false;
    
$count 0;
    
// 출처 : http://www.php.net/manual/en/function.imagecreatefromgif.php#104473
    // an animated gif contains multiple "frames", with each frame having a
    // header made up of:
    // * a static 4-byte sequence (\x00\x21\xF9\x04)
    // * 4 variable bytes
    // * a static 2-byte sequence (\x00\x2C) (some variants may use \x00\x21 ?)

    // We read through the file til we reach the end of the file, or we've found
    // at least 2 frame headers
    
while(!feof($fh) && $count 2) {
        
$chunk fread($fh1024 100); //read 100kb at a time
        
$count += preg_match_all('#\x00\x21\xF9\x04.{4}\x00(\x2C|\x21)#s'$chunk$matches);
   }

    
fclose($fh);
    return 
$count 1;
}
?>