일반페이지에서 thumbnail 함수를 이용한 썸네일 생성이 안됨
본문
일반페이지에서 에디터로 첨부한 이미지를 thumbnail 함수를 이용해서 썸네일을 만들려고 하는데 썸네일 생성이 안됩니다. ('원본파일없음'/소스파일경로 뜸)
원본 이미지가 너무 커서 썸네일을 만드려고 한 건데...왜 안될까요? 원본 이미지 있는 건 확인했습니다.
<?php
$sql = "SELECT * FROM g5_write_게시판 이름";
$result = sql_query($sql);
while ($row = sql_fetch_array($result)) {
$wr_id = $row['wr_id'];
$wr_subject = $row['wr_subject'];
$wr_1 = $row['wr_1'];
// wr_1 이미지 추출
preg_match('/<img[^>]+src=["\']([^"\']+)["\']/', $wr_1, $matches);
$img_path = isset($matches[1]) ? $matches[1] : null;
$img_name = basename($img_path);
$dir_path = dirname($img_path);
if ($img_path) {
$thumb_path = thumbnail($img_name, $dir_path, G5_DATA_PATH . '/썸네일 저장 폴더', 856, 671, false);
$thumb_url = G5_DATA_URL . '/썸네일 저장 폴더/' . $thumb_path;
} else {
$thumb_url = G5_URL . '/images/no_img.jpg';
}
?>
<a href="<?php echo G5_URL.'/projectView.php?wr_id='.$wr_id; ?>" class="project">
<div class="img-wrap">
<img src="<?php echo $thumb_url; ?>" alt="<?php echo $wr_subject; ?>" loading="lazy" />
</div>
<div class="title-wrap">
<h3><?php echo conv_content(preg_replace("@<.*?>@","", $wr_subject),0);?></h3>
</div>
</a>
<?php } ?>
답변 2
최상단에 썸네일 lib 불러와져있나요?
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
while 바로 밑에
$thumb = get_list_thumbnail(게시판이름, $row['wr_id'], 270, 270, false, true);
print_r2($thumb);
로 확인해 보세요.
답변을 작성하시기 전에 로그인 해주세요.