function AutoResizeImage(maxWidth,maxHeight){ var objImg = document.getElementById("operImg"); var img = 새 이미지(); img.src = objImg.src; var hRatio; var wRatio; var 비율 = 1; var w = img.width; var h = img.height; wRatio = 최대 너비 / w; hRatio = 최대 높이 / h; if (maxWidth ==0 && maxHeight==0){ 비율 = 1; }else if (maxWidth==0){// if (hRatio<1) Ratio = hRatio; }else if (maxHeight==0){ if (wRatio<1) Ratio = wRatio; }else if (wRatio<1 || hRatio<1){ Ratio = (wRatio<=hRatio?wRatio:hRatio); } if (Ratio<1){ w = w * 비율; h = h * 비율; } objImg.height = h; objImg.width = w; }