Answers for "can we check dimensions of image using url"

2

how to get img dimensions from remote url js

function getMeta(url, callback) {
    var img = new Image();
    img.src = url;
    img.onload = function() { callback(this.width, this.height); }
}
getMeta(
  "http://snook.ca/files/mootools_83_snookca.png",
  function(width, height) { alert(width + 'px ' + height + 'px') }
);
Posted by: Guest on January-25-2020

Code answers related to "can we check dimensions of image using url"

Code answers related to "Javascript"

Browse Popular Code Answers by Language