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.

I need to get the original width and height of an image given a specific source. My current method is:

img.tag = "<img style='display:none;' src='" + img.src + "' />";
img.Owidth = 0;
img.Oheight = 0;

$(img.tag).load(function() {
    img.Owidth = $(this).width();
    img.Oheight = $(this).height();
}).appendTo(img.parent());

With Owidth and Oheight being the original dimensions of the loaded image. I'm wondering if there is a better way to do this given that:

  • The image could either already be loaded, but displayed at a different size than its original size.
  • The image has not yet been loaded at all
share|improve this question
I'm doing something very similar and it's working pretty good for me. I'm working on a viewer that could show images at original size, fit width, fit all, etc., so it's helpful to know the original size, and I'm lazy loading images. Is your current code working for you and you're just wondering about a better way to do it? – MrOBrian Jul 16 '12 at 22:28
This code is working fine for me, MrOBrian and yeah, I just want to see if there is a more efficient way to accomplish this. – Joey Jul 16 '12 at 23:09

1 Answer

up vote 1 down vote accepted

jsFiddle demo

var hoveredImgSrc = 'image.jpg';

var img_real_width=0,
    img_real_height=0;

$("<img/>")
    .attr("src", hoveredImgSrc)
    .load(function(){
           img_real_width = this.width;
           img_real_height = this.height;
           alert( 'W='+img_real_width+' H='+img_real_height);
       })
    .appendTo('#wherever');

And removing the last ; you can additionally add .hide();

share|improve this answer

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.