TechnikTobi / little_exif

A little library for reading and writing EXIF data in pure Rust.
Apache License 2.0
22 stars 5 forks source link

custom tags #16

Closed mschnell1 closed 1 month ago

mschnell1 commented 1 month ago

The "little" doc say: Currently supports only ... a few dozen tags in IFD0 and ExifIFD. It would be nice if - when a certain feature is set - the user could provide a file with additional tags. (I am not experienced enough with Rust Macro programming to know it such is even possible.)

TechnikTobi commented 1 month ago

As of now, basically all trivial IFD0 and ExifIFD tags should be implemented. Other tags will likely require more advanced handling than simply providing additional tags to the macro in some way.

If you could be more specific regarding the tags you need I can take a look into them.

mschnell1 commented 1 month ago

Right now I am happy with the tags provided by little_exif out of the box. I just wanted to share this thought ....

TechnikTobi commented 1 month ago

Alright! If you encounter a tag that hasn't been implemented yet just let me know. There are plans to further extend capabilities in that direction (and fix tags that aren't fully supported yet due to their complexity, e.g. ThumbnailOffset), but that just is not a top priority at the moment.