썸네일 리사이징 질문입니다...ㅜㅜㅜㅜㅜ

썸네일 리사이징 질문입니다...ㅜㅜㅜㅜㅜ

QA

썸네일 리사이징 질문입니다...ㅜㅜㅜㅜㅜ

답변 1

본문

http://photossik88.cafe24.com/ 

 

첫번째 사진이 세로로 긴사진인데...썸네일에 저렇게 표시됩니다..ㅜㅜ

 

현재 메인은 최신글 스킨이구요ㅜㅜㅜ

 

http://photossik88.cafe24.com/bbs/board.php?bo_table=1010 

 

여기처럼 첫번째 사진이 세로로 길어도 그냥 짤려서 썸네일이 만들어졌으면

좋겠는데

 

어떻게 어딜 수정해야 하는지 감이안옵니다ㅜㅜㅜ

  

 

 

 

 

 

 

 

 

 

 

 

 

 


<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 
 
if(!$options) $options=3;
 
$cols  = $options; //  이미지 가로갯수 //  이미지 세로 갯수는 메인에서 지정(총 이미지 수)
$image_h  = 12; // 이미지 상하 간격
 
$col_width = (int)(99 / $cols);
 
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
 
<link rel="stylesheet" href="<?=$latest_skin_path?>/style.css" type="text/css" />
 
 
<table width=1200px border=0 align="center" cellpadding=0 cellspacing=0>
  <tr> 
    <td width="5" height="5"></td>
    <td ></td>
    <td width="5" height="5"></td>
  </tr>
  <tr> 
    <td></td>
    <td valign="top" ><table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td valign="top" style="padding-bottom:2px"><table width="100%" height="25" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td><!--<img src="<?=$latest_skin_path?>/img/icon_table.gif" width="20" height="18" border="0" align="absmiddle"><strong><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><?=$board[bo_subject]?></a></strong></td>
                <td width="47" align="right"><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><img src="<?=$latest_skin_path?>/img/box01_more.gif" width="47" height="13" border="0"></a>--></td>
              </tr>
            </table></td>
        </tr>
        <tr>
          <td valign="top">
		  
		  <table width=100% border=0 align="center" cellpadding=0 cellspacing=0>
              <tr> 
                <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
 
				<!-- 이미지보이는 부분 시작 -->
				<table align="center" cellpadding="0" cellspacing="0" width="100%" border="0">
 
				<tr><td align='center'>
 
							<table width="100%" border="0" cellspacing="0" cellpadding="0">
								<tr><td height='2'></td></tr>
								<tr>
									<td align='center'>
										<table width="100%" border="0" cellspacing="0" cellpadding="0">
										  <tr>
 
											<? for ($i=0; $i<count($list); $i++) { 
											  if ($i>0 && $i%$cols==0) { echo "</tr><tr><td colspan='$cols' height='$image_h'></td></tr><tr>"; } 
											?> 
 
											<td width="<?=$col_width?>%" align="center" valign='top'>
 
											<?
											$image = $list[$i][file][0][file]; //원본
											$img=$data_path. "/".$image;  //썸네일이 없을경우 원본출력
											$thumb = $thumb_path. "/". $list[$i][wr_id];
 
											  if ( file_exists($thumb) )
												$img = $thumb;
											  
												$style = "style='font-family:Tahoma,굴림; font-size:8pt; color:#000;' ";
												if ($list[$i][icon_new]) {
												$style = "style='font-family:Tahoma,굴림; font-size:8pt; color:#000;' "; }
												  $subject = "<span $style>".$list[$i][subject]."</span>"; //제목 글자수 자르기
												$wr_hit  = $list[$i]['wr_hit'];
												$wr_id  = $list[$i]['wr_id'];
											//    if ($list[$i]['comment_cnt']) //코
											//        $cmt = "({$list[$i]['comment_cnt']})";
 
												$bg = "";  //새글? 
												if ($list[$i][icon_new])
													$bg="la_top_2.gif";
												 else
													$bg="la_top_1.gif";
 
													echo $list[$i][icon_reply] . " ";
 
													echo "<table cellpadding='0' cellspacing='0' border='0'>";
													echo "		<tr><td background='{$latest_skin_path}/img/la_bg.gif' valign='top' align='center'>
													<a href=\"$g4[bbs_path]/board.php?bo_table=$bo_table&wr_id=$wr_id\" onFocus=\"this.blur();\" title=\"{$list[$i][subject]}\">
													<img src='{$img}' width='248' height='170' border=0' >
													</a></td></tr>";
													echo "		<tr><td height='16' align='center'>{$subject}</td></tr>";
													
													echo "</table>";
											?>
											</td>
											<? } ?> 
											<? 
											$cnt = ($i%$cols); 
											for ($k=$cnt; $k<$cols && $cnt; $k++) { 
												echo "<td width=$col_width%> </td>"; 
											} 
											?> 
										  <? if ($i+1 < count($list)) { echo "</tr><tr><td colspan='$cols' height='$image_h'></td></tr><tr>"; } ?> 
										  <? if (count($list) == 0) { echo "<td height=80 align=center>게시물이 없습니다.</td>"; } ?>
										  </tr>
										</table>
									</td>
								</tr>
							</table>
				</td></tr>
				</table>
				<!-- 이미지보이는 부분 끝 -->
                
                </td>
              </tr>
            </table></td>
        </tr>
      </table></td>
    <td></td>
  </tr>
  <tr> 
    <td width="5" height="5"></td>
    <td ></td>
    <td width="5" height="5"></td>
  </tr>
</table>
 

이 질문에 댓글 쓰기 :

답변 1

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 11
© SIRSOFT
현재 페이지 제일 처음으로