我使用plupload上传图片,然后用这段代码检查图片的宽度和高度
init: {
FilesAdded: function (up, files) {
jQuery.each(files, function (i, file) {
var reader = new FileReader();
reader.onload = function (e) {
var img = new Image;
img.src = e.target.result;
img.onload = function () {
// access image size here using this.width and this.height
}
}
reader.readAsDataURL(file)
});
}
}
但我收到此错误
Uncaught TypeError: Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'.
我如何解决这个问题?
谢谢你的帮助