게시판 상단내용 에디터 이미지 썸네일 만들기
본문
게시판 상단 내용에 들어가는 이미지를 썸네일로 만들고 싶습니다.
group.php에서 각 게시판 상단내용에 넣은 에디터내 이미지를 썸네일로 뽑으려고 하는데요~
for ($i=0; $row=sql_fetch_array($result); $i++) {
$imgs = get_editor_image($row['bo_content_head'], false);
}
외부이미지를 썸네일로 만드는 소스를 참고해서
$img_src = $imgs[1][$i];
preg_match("/src=[\'\"]?([^>\'\"]+[^>\'\"]+)/i", $img_src, $m);
$src = htmlspecialchars_decode($m[1]);
preg_match("/alt=[\"\']?([^\"\']*)[\"\']?/", $img_src, $m);
$alt = get_text($m[1]);
$filename = hash("sha256", $src);
$source_path = $target_path = G5_DATA_PATH.'/file/'.$board['bo_table'];
$thumb_src = thumbnail($filename, $source_path, $target_path, $board['bo_gallery_width'], $board['bo_gallery_height'], false, true);
$img_content = '<img src="'.G5_DATA_URL.'/file/'.$board['bo_table'].'/'.$thumb_src.'" alt="'.$alt.'" >';
이 소스를 어떻게 수정하면 될까요? 게시판 첨부이미지가 아니라 막히네요ㅠㅠ