[PHP] 그누보드5 no image 썸네일 생성
갤러리 스킨 작업 중에 이미지 첨부가 없는 게시물의 경우 no image 라는 텍스트 문구를 출력하는 대신 썸네일 이미지를 생성하는 기능이 필요해서 아래 함수를 만들었다.
// NO IMAGE 썸네일
function get_noimage_thumbnail($bo_table, $noimg, $width, $height, $class='')
{
$img_content = '<span style="width:'.$width.'px;height:'.$height.'px"';
if($class)
$img_content .= ' class="'.$class.'"';
$img_content .= '>no image</span>';
if(!is_file($noimg))
return $img_content;
$size = @getimagesize($noimg);
if($size[2] < 1 || $size[2] > 3)
return $img_content;
$ext = array(1 => 'gif', 2 => 'jpg', 3 => 'png');
$filename = 'no-image.'.$ext[$size[2]];
$filepath = G5_DATA_PATH.'/file/'.$bo_table;
$src_file = $filepath.'/'.$filename;
if(!is_file($src_file)) {
if(!copy($noimg, $src_file))
return $img_content;
@chmod($src_file, G5_FILE_PERMISSION);
}
$tname = thumbnail($filename, $filepath, $filepath, $width, $height, false, true);
if(!$tname)
return $img_content;
return '<img src="'.G5_DATA_URL.'/file/'.$bo_table.'/'.$tname.'" width="'.$width.'" height="'.$height.'">';
}
게시판 스킨에 no_img.gif 등의 파일이 있어야 하고 이 파일의 절대 경로를 $noimg 값으로 넘겨주면 이 파일을 이용해 $width, $height 값에 대응하는 썸네일 파일이 생성되고 사용자 화면이 출력이 된다.
감사합니다.
no-img.png 파일도 썸네일처리하지 않으면 크기가 같아지지 않아서 알아보던 중이었습니다.
잘 쓰겠습니다.
안녕하세요.
댓글 남겨주셔서 감사합니다.