vote up 4 vote down star
4

I am creating a jQuery plugin.

How do I get real image width and height with Javascript in Safari?

Following works with Firefox 3, IE7 and Opera 9:

var pic = $("img")

// need to remove these in of case img-element has set width and height
pic.removeAttr("width"); 
pic.removeAttr("height");

var pic_real_width = pic.width();
var pic_real_height = pic.height();

But in Webkit browsers like Safari and Google Chrome values are 0...

Doing this on server side is not an option.

flag

75% accept rate
The accepted answer uses the image load event. Makes perfect sense, but turns out to be an unreliable solution in situations where images can be cached (much to my dismay). – Nosredna Nov 6 at 19:41

7 Answers

vote up 6 vote down check

Webkit browsers set the height and width property after the image is loaded. Instead of using timeouts, I'd recommend using an image's onload event. Here's a quick example:

var pic_real_width;
var pic_real_height;

$(img).load(function() {
    // need to remove these in of case img-element has set width and height
    $(this).removeAttr("width")
           .removeAttr("height");

    pic_real_width = this.width;
    pic_real_height = this.height;
});
img.src = img.src; // Trigger onload event if image is cached (see comments)
link|flag
I'm testing on Firefox 3 and $(document).ready() also doesn't work as well. – destrado08 Mar 29 at 2:24
That's clever, didn't know you could do $(img).load(); – SeanJA Sep 18 at 2:24
On some browsers, load does not fire on a cached image (which makes me sad). Opera, for one. But Opera returns to correct width and height immediately, so you can work around that. Unfortunately, the latest Chrome on my machine seems to suffer from the same problem, so I'd say this solution is unreliable. – Nosredna Nov 6 at 15:17
You're entirely correct Nosredna. I completely overlooked that case. In the past I've gotten around this bug/feature by executing img.src = img.src after I attached the img's onload event. I'll update my answer to handle this case. – Xavi Nov 9 at 13:25
vote up 0 vote down

As Luke Smith says, image load is a mess. It's not reliable on all browsers. This fact has given me great pain. A cached image will not fire the event at all in some browsers, so those who said "image load is better than setTimeout" are wrong.

Luke Smith's solution is here.

And there is an interesting discussion about how this mess might be handled in jQuery 1.4.

I have found that it's pretty reliable to set the width to 0, then wait for the "complete" property to go true and the width property to come in greater than zero. You should watch for errors, too.

link|flag
vote up 0 vote down

For functions where you do not want to alter the original placement or image.

$(this).clone().removeAttr("width").attr("width");
$(this).clone().removeAttr("height").attr("height);
link|flag
vote up 0 vote down

Thanx a lot Alex, this is simple and works very well ! I guess in complex pages with a lot of images and javascript, this might cause performance loss (useless delay before executing anything) and need the tips above at the right place, where these attrs are needed.

link|flag
vote up 1 vote down

Wow yes! IT's much better to use $window.load() than $document.ready().. I guess the DOM can be ready to be parsed much earlier than the images are done loading!

link|flag
vote up 5 vote down

The root problem is that WebKit browsers (Safari and Chrome) load JavaScript and CSS information in parallel. Thus, JavaScript may execute before the styling effects of CSS have been computed, returning the wrong answer. In jQuery, I've found that the solution is to wait until document.readyState == 'complete', .e.g.,

jQuery(document).ready(function(){
  if (jQuery.browser.safari && document.readyState != "complete"){
    //console.info('ready...');
    setTimeout( arguments.callee, 100 );
    return;
  } 
  ... (rest of function)

As far as width and height goes... depending on what you are doing you may want offsetWidth and offsetHeight, which include things like borders and padding.

link|flag
Yeah, that's the reason. A better workaround is to use jQuery's load-event. – Frank Bannister Nov 26 '08 at 0:26
vote up 2 vote down

this works for me (safari 3.2), by firing from within the window.onload event:

$(window).load(function() {
  var pic = $('img');

  pic.removeAttr("width"); 
  pic.removeAttr("height");

  alert( pic.width() );
  alert( pic.height() );
});
link|flag
Yeah! Didn't work from $(document).ready(function(){}); Thanks! It needs to have the image fully loaded before it can read it. Ofcourse. – Frank Bannister Nov 25 '08 at 20:30

Your Answer

Get an OpenID
or

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