How to get image natural width and height in JavaScript

1 Answer

0 votes
function get_image_size() {
    var image = document.getElementById('imgid');

    var width = image.naturalWidth;
    var height = image.naturalHeight;

    document.write(width + " " + height);
}
 
   
/*
run:
   
2560 1200
      
*/
<img src="http://coupondiscountblog.com/images/dreamcloudsleep-mattress.jpg" id="imgid" 
     width="400" height="200" />
<br />
<button onclick="get_image_size()">get image size</button>

 



answered Sep 19, 2019 by avibootz

Related questions

3 answers 345 views
2 answers 261 views
2 answers 351 views
1 answer 231 views
...