image
image copied to clipboard
Spinning off image metadata extraction into a separate library?
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.
To be more specific, I need to be able to decode the metadata of an image, from a Uint8List
, without decompressing the image itself.
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.