Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a reliable, framework independent way of determining the physical dimensions of a <img src='xyz.jpg'> resized on the client side?

share|improve this question

4 Answers

up vote 30 down vote accepted

You have 2 options:

Option 1:

Remove the width and height attributes and read offsetWidth and offsetHeight

Option 2:

Create a JavaScript image object, set the src, and read the width and height (you don't even have to add it to the page to do this).

function getImgSize(imgSrc) {
    var newImg = new Image();

    newImg.onload = function() {
    var height = newImg.height;
    var width = newImg.width;
    alert ('The image size is '+width+'*'+height);
    }

    newImg.src = imgSrc; // this must be done AFTER setting onload

}

Edit by Pekka: As agreed in the comments, I changed the function to run on the ´onload´ event of the image. Otherwise, with big images, height and width would not return anything because the image was not loaded yet.

share|improve this answer
Excellent, that's the way I'm going to do it. Thanks! – Pekka 웃 Dec 22 '09 at 5:22
That won't work with images that aren't loaded yet. It might be worth adjusting it to work properly for other people stumbling across this answer. – James Dec 22 '09 at 9:45
@Gabriel, I am using this but with an newImg.onload function to make sure the image is loaded when I set the width/height. Are you ok with me editing your answer accordingly? – Pekka 웃 Jan 2 '10 at 18:19
Thats not a problem – Gabriel McAdams Jan 2 '10 at 18:21
1  
how ca i get return hieght and width...?? because those variable are not getting outside of onload – jack Jun 22 '12 at 11:34
show 2 more comments

Images (on Firefox at least) have a naturalWidth/height property so you can use img.naturalWidth to get the original width

var img = document.getElementsByTagName("img")[0];
img.onload=function(){
    console.log("Width",img.naturalWidth);
    console.log("Height",img.naturalHeight);
}

Source

share|improve this answer
1  
Works on Chrome too – bcoughlan Jul 21 '12 at 15:12
Also works in IE9+, but not in IE8 – fero Feb 5 at 12:27

You can preload the image into a javascript Image object, then check the width and height properties on that object.

share|improve this answer
Of course - I don't have to put it into the document. Will do it that way, cheers! – Pekka 웃 Dec 22 '09 at 5:23

In my app, the code I'm working on is already inside of an onload event handler, so I know the image has been loaded. I'm using large images (i.e. lots of memory), so I'd rather not allocate all the memory for another image.

So, I've written my own version of the function that simply sets the width and height of the image to 'auto' for an instant while we check the natural dimensions and then restore the original dimensions.

Here's my function in case it helps anyone:


    function getImageSize(img) {
        var oWidth = img.width();
        var oHeight = img.height();

        img.css('width', 'auto');
        img.css('height', 'auto');

        var rVal = new Object();
        rVal.width = img.width();
        rVal.height = img.height();

        alert ('The image size is '+rVal.width+'x'+rVal.height);

        img.css('width', oWidth);
        img.css('height', oHeight);

        return rVal;
    }

share|improve this answer
jQuery only, right? – Prestaul May 16 at 20:52
While it is true that my function is written in jQuery, it should be a relatively straightforward process to rewrite it in vanilla Javascript, or even another framework. Best of luck! :) – rinogo May 17 at 1:15

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.