GNU/skin/board/A950_jy_today/view/view.image.php
<section class="Images">
    <ul class="ImgBox">
        <?php
        //$board['bo_image_width'] = "485";
        // $board['bo_image_height'] = "";
        $v_img_count = count($view['file']);
        if($v_img_count > 1) {
            for ($i=0; $i<$v_img_count-1; $i++) {
                $filename = $view['file'][$i]['file']; // 서버 저장 파일명
                $filepath = G5_DATA_PATH.'/file/'.$bo_table; // 데이터 디렉토리 경로
                $filesrc = G5_DATA_URL.'/file/'.$bo_table.'/'.$filename; // 이미지 주소
                $thumb = thumbnail($filename, $filepath , $filepath , $board['bo_image_width'], $board['bo_image_height'], false, true); // 섬네일 이미지 파일명
                $thumbsrc = G5_DATA_URL.'/file/'.$bo_table.'/'.$thumb; // 섬네일 주소
                $filename = $filesrc;
        ?>
        <? if ($thumb) { ?>
            <li class="Block">
                <div class="ImgFile" onclick="NewWindow('<?=$board_skin_url;?>/image.view.php?fileurl=<?=$filename;?>','name','<?=$view['file'][$i]['image_width'];?>','<?=$view['file'][$i]['image_height']+1;?>','yes'); return false" tooltip="<?=$view[file][$i]['bf_content'];?>" flow="right">
                    <span  tooltip="원본 이미지 보기 : <?=$view['file'][$i]['image_width'];?> X <?=$view['file'][$i]['image_height'];?>" flow="left"><img src="<?=$thumbsrc;?>" /></span>
                </div>
                <? $resize_height = $view['file'][$i]['image_height']/$view['file'][$i]['image_width']* $board['bo_image_width']; ?>
            </li>
            <ul class="Img-Txt">
                <li><b></b></li>
                <li><label>ORIGINAL IMAGE SIZE : </label><label><?=$view['file'][$i]['image_width'];?></label> <label>X</label> <label><?=$view['file'][$i]['image_height'];?></label></li>
                <li><b></b></li>
                <li><?=$view[file][$i]['bf_content'];?></li>
            </ul>
        <?
        }
            }
        }
        ?>
    </ul>
</section>