Obtenha a largura da foto HTML
var img = new Image();
img.onload = function(){
var height = img.height;
var width = img.width;
// code here to use the dimensions
}
img.src = url;
Ugliest Unicorn