게시판 썸네일 관리자 지정 영향 안받는 방법
본문
안녕하세요.
위 처럼 게시글 올렸을 시 관리자 게시판 수정에서 이미지 크기 설정한대로 나오는데,
설정한것 없이 올린대로 이미지가 원본 비율 그대로 나오는 방법이 있을까요?
<?php } else {
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height'], false, false);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" class="item-container img-fluid">';
} else {
$img_content = '<span class="no_image">no image</span>';
}
echo $img_content;
}
?>
$thumb 코드에 둘 다 false로 설정해도 같아서 질문드립니다! 좋은하루보내세요!
!-->답변 1
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" class="item-container img-fluid">';
->
if($thumb['ori']) {
$img_content = '<img src="'.$thumb['ori'].'" alt="'.$thumb['alt'].'" class="item-container img-fluid">';
답변을 작성하시기 전에 로그인 해주세요.