我们正在从filepicker.pickAndStore()
成功回调中抓取并存储图像元数据。现在我们使用filepicker.stat()
获取维度:
// file is an object returned from the success callback
filepicker.stat(file, { width: true, height: true }, function(metadata) {
// our app code
});
我们希望宽度和高度返回旋转图像的尺寸(使用rotate=exif
)。最简单的方法是什么?