Closed
Description
Hi there!
I'm trying to rotate the picture based on Orientation but save all meta attributes
loadImage.parseMetaData(
file,
function(data) {
loadImage(file, img => {
img.toBlob(blob => {
var blobWithMeta = new Blob(
[
data.imageHead,
blob
],
{ type: blob.type }
);
resolve(blobWithMeta);
}, 'image/jpeg');
}, {
orientation: true
});
},
);
But the final image still has Orientation meta attribute. How can I remove just one meta from the data.imageHead
?