function showImageSize(img){ var width, height; if(img.naturalWidth){ width = img.naturalWidth; height = img.naturalHeight; } else { var tImg = new Image(); tImg.src = img.src; width = tImg.width; height = tImg.height; } alert("Image width:" + width + ", height:" + height); } 출처 : http://tvnuri.com/