Is there any javascript or jquery apis or methods to get the dimensions of an image on the page?

link|improve this question

feedback

13 Answers

up vote 80 down vote accepted

clientWidth and clientHeight are DOM properties that show the current in-browser size of the inner dimensions of a DOM element (excluding margin and border). So in the case of an IMG element, this will get the actual dimensions of the visible image.

var img = document.getElementById('imageid'); 
//or however you get a handle to the IMG
var width = img.clientWidth;
var height = img.clientHeight;
link|improve this answer
13  
This just gets the dimensions of an element, not of an image... – Nicky De Maeyer Aug 31 '11 at 14:29
2  
@Nicky exactly right. It gives the dimensions of the image as it is rendered in that instance. – Rex M Sep 1 '11 at 9:33
feedback

You can programmatically get the image and check the dimensions using Javascript...

var img = new Image();
img.onload = function() {
  alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';

This can be useful if the image is not a part of the markup.

link|improve this answer
2  
I just tried this in Firefox4, it will output 0x0. – runrunforest Mar 2 '11 at 18:58
@runrunforest Try now. Thanks :) – Josh Stodola Mar 2 '11 at 21:05
2  
I appreciate this – Artur Sapek Dec 9 '11 at 4:40
It works event in IE 9 jsfiddle.net/jeykeu/HZPkm/1 thanks @JoshStodola – Jey Keu Mar 24 at 7:59
feedback

Using JQuery you do this:

var imgWidth = $("#imgIDWhatever").width();
link|improve this answer
19  
And if the image hasnt loaded yet? – James Westgate Jun 2 '11 at 9:30
1  
and if the image is in the background property of the div? :) – Nicky De Maeyer Aug 31 '11 at 14:31
feedback

Also (in addition to Rex and Ian's answers) there is imageElement.naturalHeight and imageElement.naturalWidth which provide the heigh and width of the image itself (rather than the image element).

link|improve this answer
3  
These are FF only. – Jourkey Sep 15 '09 at 0:09
1  
Chromium too (as of now) – Manuel Mar 31 '11 at 18:27
1  
@Jourkey: they've been in webkit (and so Safari, Chrome, Epiphany, and most mobile browsers...) for a long time – olliej Mar 31 '11 at 20:16
1  
This is now supported in IE9 and all modern web browsers. – Aaron May 18 at 15:08
feedback

The thing all other have forgot is that you cant check image size before it loads. When the author checks all of posted methods it will work probably only on localhost. Since jQuery could be used here, remember that 'ready' event is fired before images are loaded. $('#xxx').width() and .height() should be fired in onload event or later.

link|improve this answer
1  
Post some updated code, you may get upvoted and even get a coveted reversal badge! – James Westgate Jun 2 '11 at 9:31
feedback

You can only really do this using a callback of the load event as the size of the image is not known until it has actually finished loading. Something like the code below...

var imgTesting = new Image();

function CreateDelegate(contextObject, delegateMethod)
{
    return function()
    {
        return delegateMethod.apply(contextObject, arguments);
    }
}

function imgTesting_onload()
{
    alert(this.width + " by " + this.height);
}


imgTesting.onload = CreateDelegate(imgTesting, imgTesting_onload);
imgTesting.src = 'yourimage.jpg';
link|improve this answer
Very useful technique and answer! – ʍǝɥʇɐɯ Dec 8 '11 at 16:51
feedback

If you are using jQuery and you are requesting image sizes you have to wait until they load or you will only get zeroes.

$(document).ready(function() {
    $("img").load(function() {
        alert($(this).height());
        alert($(this).width());
    });
});
link|improve this answer
feedback

ok guys, i think i improved the source code to be able to let the image load before trying to find out its properties, otherwise it will display '0 * 0', because the next statement would have been called before the file was loaded into the browser. Requires jquery...

function getImgSize(imgSrc){
    var newImg = new Image();
    newImg.src = imgSrc;
    var height = newImg.height;
    var width = newImg.width;
    p = $(newImg).ready(function(){
        return {width: newImg.width, height: newImg.height};
    });
    alert (p[0]['width']+" "+p[0]['height']);
}
link|improve this answer
feedback

Display the image, but keep it off the page like so:

<div style="position:absolute; left: -3000px; top: -3000px;">
     <img id="fullsizeImage" src="image.jpg" />
</div>

Then use javascript to get the size:

var image=document.getElementById("fullsizeImage"); 
var width=image.width; 
var height=image.height; 

alert("width = " + width + ", height = " + height);
link|improve this answer
feedback

JQuery Answer:

$height = $('#image_id').attr('height');
$width  = $('#image_id').attr('width');
link|improve this answer
feedback

You can also use:

var image=document.getElementById("imageID");
var width=image.offsetWidth;
var height=image.offsetHeight;
link|improve this answer
feedback

Nicky De Maeyer asked after a background picture; I simply get it from the css and replace the "url()":

var div = $('#my-bg-div');
var url = div.css('background-image').replace(/^url\(\'?(.*)\'?\)$/, '$1');
var img = new Image();
img.src = url;
console.log('img:', img.width + 'x' + img.height); // zero, image not yet loaded
console.log('div:', div.width() + 'x' + div.height());
img.onload = function() {
  console.log('img:', img.width + 'x' + img.height, (img.width/div.width()));
}
link|improve this answer
feedback

In mootools its pretty simple

$('imageElement').width()
$('imageElement').height()

What about the case where image has been fit in a certain div of different size. Can image's actual size can be retrieved?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.