Replies: 1 comment 2 replies
-
@Webreaper loading is supported via We don't support metadata-only updating though. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Somewhat related to #1371 but this time for Metadata operations - it would be great if there was a way to load a metadata-only representation of an image without decoding the image data itself.
The primary use-case would be for operations where you want to load the image, add/remove/update EXIF/IPTC metadata, and write the metadata back to the original image file (or a copy). By not loading the entire image into the stream, or decoding it, these operations could be made significantly faster (particularly for very large image files).
Currently I use an out-of-process instance of ExifTool to update image metadata, but if ImageSharp could do it all with approximately the same performance, I'd drop that immediately.
Bonus feature would be to implement the ability to load the image data too, for the use case:
Although I suspect that it may just be easier to reload a new instance of the image from scratch at that point, so it might be unnecessary.
Beta Was this translation helpful? Give feedback.
All reactions