Posted on 2007. 10. 26. 09:16
Filed Under Java
<script language="javascript">
var imgObj = new Image();
imgObj.src = "../../UccFiles/<%=java.net.URLEncoder.encode(fileName,"UTF-8")%>";
if(imgObj.complete) { // 이미지가 완전히 로딩되었을때 이미지 사이즈를 조정해준다.
if((imgObj.width < 500) || (imgObj.height < 350) ) {
document.images.imgId.width = imgObj.width;
document.images.imgId.height = imgObj.height;
}
}
</script>
var imgObj = new Image();
imgObj.src = "../../UccFiles/<%=java.net.URLEncoder.encode(fileName,"UTF-8")%>";
if(imgObj.complete) { // 이미지가 완전히 로딩되었을때 이미지 사이즈를 조정해준다.
if((imgObj.width < 500) || (imgObj.height < 350) ) {
document.images.imgId.width = imgObj.width;
document.images.imgId.height = imgObj.height;
}
}
</script>