Is there a reliable, framework independent way of determining the physical dimensions of a <img src='xyz.jpg'> resized on the client side?
|
|
|||
|
|
|
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).
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, |
|||||||||||||
|
|
Images (on Firefox at least) have a
|
|||
|
You can preload the image into a javascript Image object, then check the width and height properties on that object. |
|||
|
|
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:
|
||||