native_exif icon indicating copy to clipboard operation
native_exif copied to clipboard

Writing Exif Data to in-memory buffer

Open sbordeyne opened this issue 1 year ago • 0 comments

Hello,

I was wondering if it would be possible to write exif data directly to an in-memory buffer, instead of having to write the file (even temporarily) to storage. Something like

final exif = await Exif.fromBytes(imageBytes);
...
final newImage = await exif.getImageBytes();
await exif.close(); 

would be perfect.

sbordeyne avatar Jun 04 '24 09:06 sbordeyne