是否可以使用filepicker分配给每个图像的ID来获取通过FilePicker上传的图像的大小和尺寸? 例如,通过发送id向服务发出请求并以任何方式接收此信息?
非常感谢!
答案 0 :(得分:0)
您可以使用stat获取上传文件的更详细元数据:
https://www.filestack.com/docs/file-ingestion/javascript-api/stat
filepicker.stat(
blob,
{
width: true,
height: true
},
function(metadata){
console.log(JSON.stringify(metadata));
}
);