썸네일이 홀쭉하게 늘어집니다. 정보
썸네일이 홀쭉하게 늘어집니다.본문
최근게시물스킨 썸네일의 가로, 세로 길이를 각각 160, 190으로 맞췄습니다. 그런데 썸네일이 홀쭉하게 늘어지네요. 어떻게 하면 홀쭉하지 않게 나오게 할 수 있을까요
아래는 skin/latest/Group_skin/latest.skin.php입니다
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if(!$options) $options=3;
$cols = $options; // 이미지 가로갯수 // 이미지 세로 갯수는 메인에서 지정(총 이미지 수)
$image_h = 5; // 이미지 상하 간격
$col_width = (int)(99 / $cols);
$data_path = $g4[path]."/data/file/";
$thumb_path = $data_path;
?>
<link rel="stylesheet" href="<?=$latest_skin_path?>/style.css" type="text/css" />
<table width=100% 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="10" border="0" cellpadding="0" cellspacing="0">
<tr>
<td></td>
<td width="47" align="right"></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>"; }
$bo_table=$board_list[$i][bo_table];
?>
<td width="<?=$col_width?>%" align="center" valign='top'>
<?
$image = urlencode($list[$i][file][0][file]); //원본
$img=$data_path."/".$bo_table."/".$image; //썸네일이 없을경우 원본출력
$thumb = $thumb_path."/".$bo_table."/thumb".$list[$i][wr_id];
if ( file_exists($thumb) )
$img = $thumb;
$style = "style='font-family:돋움; font-size:9pt; color:#686695;' ";
if ($list[$i][icon_new]) {
$style = "style='font-family:돋움; font-size:9pt; color:#134980;' "; }
$subject = "<span $style>".$list[$i][subject]."</span>"; //제목 글자수 자르기
$wr_hit = $list[$i]['wr_hit'];
$wr_id = $list[$i]['wr_id'];
$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='160' height='190' border=0' style='border:0 solid #B2BAEE'>
</a></td></tr>";
//echo " <tr><td height='16' align='center'><b>{$subject}</b></td></tr>";
echo " <tr><td height='16' align='center'>{$btimg_dc}</td></tr>";
// echo " <tr><td height='16' align='center'><font color='#333333'>시중가 :</font><font color='#333333'> <strike>{$list[$i][wr_3]} </strike><font color='#A2390A'>원</font></td></tr>";
// echo " <tr><td height='16' align='center'><font color='#333333'>판매가 :</font><font color='#333333'> {$list[$i][wr_4]} <font color='#A2390A'></font></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>
아래는 skin/latest/Group_skin/latest.skin.php입니다
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if(!$options) $options=3;
$cols = $options; // 이미지 가로갯수 // 이미지 세로 갯수는 메인에서 지정(총 이미지 수)
$image_h = 5; // 이미지 상하 간격
$col_width = (int)(99 / $cols);
$data_path = $g4[path]."/data/file/";
$thumb_path = $data_path;
?>
<link rel="stylesheet" href="<?=$latest_skin_path?>/style.css" type="text/css" />
<table width=100% 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="10" border="0" cellpadding="0" cellspacing="0">
<tr>
<td></td>
<td width="47" align="right"></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>"; }
$bo_table=$board_list[$i][bo_table];
?>
<td width="<?=$col_width?>%" align="center" valign='top'>
<?
$image = urlencode($list[$i][file][0][file]); //원본
$img=$data_path."/".$bo_table."/".$image; //썸네일이 없을경우 원본출력
$thumb = $thumb_path."/".$bo_table."/thumb".$list[$i][wr_id];
if ( file_exists($thumb) )
$img = $thumb;
$style = "style='font-family:돋움; font-size:9pt; color:#686695;' ";
if ($list[$i][icon_new]) {
$style = "style='font-family:돋움; font-size:9pt; color:#134980;' "; }
$subject = "<span $style>".$list[$i][subject]."</span>"; //제목 글자수 자르기
$wr_hit = $list[$i]['wr_hit'];
$wr_id = $list[$i]['wr_id'];
$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='160' height='190' border=0' style='border:0 solid #B2BAEE'>
</a></td></tr>";
//echo " <tr><td height='16' align='center'><b>{$subject}</b></td></tr>";
echo " <tr><td height='16' align='center'>{$btimg_dc}</td></tr>";
// echo " <tr><td height='16' align='center'><font color='#333333'>시중가 :</font><font color='#333333'> <strike>{$list[$i][wr_3]} </strike><font color='#A2390A'>원</font></td></tr>";
// echo " <tr><td height='16' align='center'><font color='#333333'>판매가 :</font><font color='#333333'> {$list[$i][wr_4]} <font color='#A2390A'></font></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>
댓글 전체

이 스킨에는 썸네일을 생성해주는 함수가 없네요.
그러다보니 원본을 무조건 160*190으로 맞춰서 보여주는 것 같습니다.
그러다보니 원본을 무조건 160*190으로 맞춰서 보여주는 것 같습니다.
일단 단서가 생겼네요. 감사합니다