[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] …