What EXIF lib can I use from a Qt program (on embedded linux)?

后端 未结 2 1328

Can anybody recommend a nice exif lib for tiff img that can be used with a Qt program? I would like to both read and write exif data.

Please note that that I need a

相关标签:
2条回答
  • 2021-01-05 06:52

    You can use the libjpeg-exif library, it includes tools manipulate and read EXIF data.

    0 讨论(0)
  • Even if it is not Qt-related, probably your best option is the libexif C EXIF library. It is a GNOME core library (thus is widely deployed, tested and documented), still it is completely toolkit-agnostic, has no dependences and is LGPL licensed. It is a C library, thus its API is not idiomatic of Qt, nonetheless it is powerful and easy to use.

    I've seen a lot of Qt-based software that prefer to use the exiv2 library, which is written in C++, but exiv2 is GPL (with option to buy a commercial license) and offers more or less the same functionality of libexif. My suggestion is to try libexif and, only if it does not satisfy your requirements, try exiv2.

    0 讨论(0)
提交回复
热议问题