我正在尝试从图像拖放中获取图像宽度和高度,html 5 文件 api。这就是我试图获得宽度的方式:
function process_drop(evt) {
evt.stopPropagation();
evt.preventDefault();
var files = evt.dataTransfer.files;
// run through each file individually.
for (var i = 0, f; f = files[i]; i++) {
console.log('file_size=' + f.size);
// check if it is an image
if (f.type.match('image.*')) {
console.log('this is an image ' + f.type);
//try to get the file width
var img = new Image();
img.src = f;
console.log('img.width=' + img.width); //does not work
}
}
}
以像素为单位获取图像宽度和高度的正确方法是什么?