Answers for "get image height and width from url javascript"

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
1

javascript get image width and height

var img = new Image();
img.onload = function() {
  alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
Posted by: Guest on March-04-2020
0

javascript get width of image

image.width
Posted by: Guest on July-01-2020

Code answers related to "get image height and width from url javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language