image icon indicating copy to clipboard operation
image copied to clipboard

Spinning off image metadata extraction into a separate library?

Open lukehutch opened this issue 1 year ago • 2 comments

image has good support for reading image metadata. There isn't another library out there that really does this -- https://pub.dev/packages/exif only works for JPEG images, for example.

Maybe because of tree shaking, this is a moot point, but I would love to see the metadata parsing parts of image spun off into a separate library.

I am using Flutter for all my image processing, because image processing is accelerated on Flutter, but I do need to read image metadata, and other than width and height, Flutter doesn't give me that information.

lukehutch avatar Aug 28 '23 22:08 lukehutch

To be more specific, I need to be able to decode the metadata of an image, from a Uint8List, without decompressing the image itself.

lukehutch avatar Aug 28 '23 22:08 lukehutch

Sorry for the delay. I don't know about making a new library, I can barely keep up with the libraries I already have. But I can look into getting a metadata only decode method.

brendan-duncan avatar Sep 17 '23 15:09 brendan-duncan