썸네일 여백 없애기 get_file_thumbnail, get_view_thumbnail

· 2023-05-18 (목) 00:38:03 · 3436

thumbnail 함수에 $thumb_width 인수를 0으로 보내면 thumbnail 함수에서 thumb_height를 기준으로 원본이미지를 키워서 썸네일을 만듭니다.

 

function get_view_thumbnail($contents, $thumb_width=0)

{

...

 

            // Animated GIF 체크
            $is_animated = false;
            if($file_ext === 'gif') {
                $is_animated = is_animated_gif($srcfile);

                if($replace_content = run_replace('thumbnail_is_animated_gif_content', '', $contents, $srcfile, $is_animated, $img_tag, $data_path, $size)){

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

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


            $thumb_width = $thumb_width_tmp;
            // 썸네일 생성
            if(!$is_animated)
                $thumb_file = thumbnail($filename, $filepath, $filepath, $thumb_width, $thumb_height, false);
            else
                $thumb_file = $filename;

            if(!$thumb_file)
                continue;

 

...

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

그누보드5 팁자료실

2,788건
+
제목 글쓴이 날짜 조회
23-07-30 조회 2,972
23-07-28 조회 3,781
23-07-25 조회 5,106
23-07-19 조회 3,781
23-07-12 조회 3,189
23-07-07 조회 4,360
23-07-07 조회 4,332
23-07-06 조회 3,680
23-07-03 조회 4,674
23-07-01 조회 3,613
23-06-30 조회 4,254
23-06-29 조회 5,978
23-06-25 조회 3,312
23-06-22 조회 3,612
23-06-17 조회 3,350
23-06-16 조회 3,848
23-06-12 조회 5,166
23-05-27 조회 4,061
23-05-26 조회 4,279
23-05-26 조회 3,748
23-05-23 조회 4,190
23-05-22 조회 4,762
23-05-22 조회 3,746
23-05-18 조회 4,172
23-05-18 조회 3,437
23-05-17 조회 4,254
23-05-16 조회 5,754
23-05-13 조회 3,609
23-05-12 조회 3,895
23-05-10 조회 3,874