Get image width and height from the Base64 code in JavaScript

var i = new Image();

i.onload = function(){
  alert(i.width + ", " + i.height);
};

i.src = imageData;

Leave a Comment