1

我正在尝试从图像拖放中获取图像宽度和高度,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           
        }


    } 
} 

以像素为单位获取图像宽度和高度的正确方法是什么?

4

1 回答 1

1

您不能<input type=file>直接使用对象作为<img>.

首先将其转换为 dataURI:https ://developer.mozilla.org/en/Using_files_from_web_applications#Example:_Using_object_URLs_to_display_images

此外,您需要先触发 Image.onload() 事件,然后才能尝试访问宽度值。

于 2012-04-27T22:22:09.403 回答