Read exif metadata of images in Qt

前端 未结 3 1154
难免孤独
难免孤独 2020-12-22 04:36

In my Qt app I want to read exif data of images. QImage or QPixmap don\'t seem to provide such hooks.

Is there any API in Qt that allows re

3条回答
  •  庸人自扰
    2020-12-22 05:22

    For me, the best choice was easyexif by Mayank Lahiri. You only need to add two files exif.cpp and exif.h to your project.

    int main(int argc, char *argv[])
    {
        for (int i=1; i

提交回复
热议问题