Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

13 Answers

up vote 148 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;
share|improve this answer
45  
This just gets the dimensions of an element, not of an image... – Nicky De Maeyer Aug 31 '11 at 14:29
15  
@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
Is there a jQuery alternative to this? – Mat-visual Mar 12 at 11:11
2  
@Mat-visual $.fn.width and $.fn.height. – yckart Apr 2 at 6:05

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.

share|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 '12 at 7:59
thank you for posting this – chris hough Jun 20 '12 at 18:29
show 4 more comments

Using JQuery you do this:

var imgWidth = $("#imgIDWhatever").width();
share|improve this answer
34  
And if the image hasnt loaded yet? – James Westgate Jun 2 '11 at 9:30
4  
and if the image is in the background property of the div? :) – Nicky De Maeyer Aug 31 '11 at 14:31
1  
@JamesWestgate If the image has not yet been loaded, there is not way of determining its actual size. You could however attempt to read the width and height attributes of the img element. – Tim Jun 4 '12 at 17:28
1  
@Tim - yep, I was being rhetorical :) – James Westgate Jun 5 '12 at 8:26
Haha. My mistake! – Tim Jun 5 '12 at 8:52

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).

share|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 '12 at 15:08
1  
worked for me in chrome just now...update? – apple16 Jul 27 '12 at 14:39
show 2 more comments

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());
    });
});
share|improve this answer
1  
For reference: api.jquery.com/load-event – Akseli Palén Nov 25 '12 at 20:11

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.

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

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';
share|improve this answer
Very useful technique and answer! – ʍǝɥʇɐɯ Dec 8 '11 at 16:51
in jquery, you can use $.proxy for this. – Jochem Van Der Spek Apr 18 at 8:06

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']);
}
share|improve this answer

You can also use:

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

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()));
}
share|improve this answer
I never understood the use of regexp for this when using jQuery. Since jQuery will normalize the attribute for you you get away just fine by using s.substr(4,s.length-5), it's at least easier on the eyes ;) – d-Pixie Jan 29 at 17:32

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?

share|improve this answer

Before using real image size you should load source image. If you use JQuery framework you can get real image size in simple way.

$("ImageID").load(function(){
  console.log($(this).width() + "x" + $(this).height())
})
share|improve this answer

JQuery Answer:

$height = $('#image_id').height();
$width  = $('#image_id').width();
share|improve this answer
1  
This won't work when the width="123" attribute is not set – Dallas Clark Jul 20 '12 at 4:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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