Adding custom metadata to jpeg files

2019-06-22 08:01发布

问题:

I'm working on an Image processing project(C++) and I need to write custom metadata to jpeg file after the processing is complete. How can I accomplish this? Is there any library available to do it ?

回答1:

If you're talking about EXIF Metadata you may want to look at exiv2 which is a C++ library for processing EXIF metadata. There is a second lib which is called libexif and is written in C.

Exiv2 has a view examples on their website and a the API is well documented.

UPDATE: If you want to add custom metadata you could either use the MakerNote or the Comment tag.

Exif Standard: PDF see Section 4.6.5 EXIF IFD Attribute Information Table 7, Tags Relating to User Information.

     MakerNote    Type Undefined Count Any
     Comment      Type Undefined Count Any

which means you're allowed to use those 2 tags for any data you want.