JS – get image width and height from the base64 code

var i = new Image(); 

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

i.src = imageData; 

Leave a Comment