我打算在将图像上载到服务器之前先对其进行身份验证,因此,仅需要对图像数据应用某种哈希算法(元数据除外)。
类似
function authenticateImage(file){
//extract image data excluding metadata
const imageDataOnly = ???????;
//apply sha-2
const dataImageSha2 = generateSha2(imageDataOnly)
http.post('/image-catalog/exist', dataImageSha2,
response=>{
//image doent exist on server the i should upload its content
if(!response) http.put("image-catalog/new", file);
});
}
您能建议我任何允许我仅提取图片数据(不包括元数据)的npm软件包吗?
请注意,我完全不会对元数据感兴趣
预先感谢