Answers for "get image size html"

1

javascript get image dimensions

var img = document.getElementById("myImageID"); 
var imgWidth = img.clientWidth;
var imgHeight = img.clientHeight;
Posted by: Guest on July-31-2019
0

get width of html photo

var img = new Image();

img.onload = function(){
  var height = img.height;
  var width = img.width;

  // code here to use the dimensions
}

img.src = url;
Posted by: Guest on January-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language