우리가 남이가? - <고수용버전2:섬네일편>
본문
이렇게 말하면
거의 모든 분이 남이라고 하시더라구요,,유유
암튼 늘 껄쩍지근한 질문만 드려서 미안합니다.
파일업로드 갯수를 늘릴려면 어떻게 해야 하나요?
날짜를 2016-07-26 이렇게 나오게 하려면요?
이런 질문들도 간혹 해야 하는데...유유
===============================================
늘 질뭉이 안간단해서...유유
"댓글에서" 에디터로 이미지를 올렸는데...불량학생님의 도움으로 리스트에 불러오긴 했는데 이게 원본크기입니다.
이거를 리스트에 섬네일로 불러오려는 것인데..뭔가 추가 손질이 필요한거 같아요..
<?php
if (!$list[$i]['is_notice']) {
$query = " select wr_content from ".$write_table." where wr_parent = '".$list[$i]['wr_id']."' and wr_is_comment > 0 ";
/*여러개의 글 검사 할 때*/
$result = sql_query($query);
for($j=0; $row = sql_fetch_array($result); $j++) {
echo get_view_thumbnail($row['wr_content']);
}
/*여러개의 글 검사 할 때*/
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'" class="list_img">';
} else {
$img_content = '<img src="'.$board_skin_url.'/img/noimage.gif" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'" class="list_img">';
}
echo $img_content;
}
?>
답변 2
원본 사이즈 그대로이고 즉 해상도만 흐릿하게 <--- 뷰페이지용 함수를 사용하다보니 그렇겠네요
스킨 상단 적당한 곳에 아래 스타일을 넣어보세요
<style>
.gall_con img{width:<?=$board['bo_gallery_width']?>px; height:<?php echo $board['bo_gallery_height']?>px; }
</style>
echo get_view_thumbnail($row['wr_content']);
-->
echo get_view_thumbnail($row['wr_content'], $board['bo_gallery_width']);
그런데 이것은 내용까지 붙여서 가져오므로 다음처럼 수정하세요세요
1. echo get_view_thumbnail($row['wr_content'], $board['bo_gallery_width'], false);
2. thumbnail.lib.php 수정
function get_view_thumbnail($contents, $thumb_width=0)
--->
function get_view_thumbnail($contents, $thumb_width=0, $cont=true)
return $contents;
---->
if($cont) return $contents;
else return $thumb_tag;