Registry / utility / easyexif

easyexif

JSON →
library2022-10-07vcpkgunverified

Tiny ISO-compliant C++ EXIF parsing library, third-party dependency free

vcpkg install easyexif
INSTALL
IMPORT
SIG · EASYEXIF
E
easyexif
utilitycppv2022-10-07
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

easyexif/exif.h
#include <easyexif/exif.h>

Parse EXIF data from a JPEG file

#include "easyexif/exif.h" #include <fstream> #include <vector> int main() { std::ifstream file("photo.jpg", std::ios::binary); std::vector<char> data((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>()); easyexif::EXIFInfo result; if (result.parseFrom(reinterpret_cast<const unsigned char*>(data.data()), data.size()) == PARSE_EXIF_SUCCESS) { // Use result.ImageDescription, etc. } return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2022-10-07latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources

No resource links recorded.

easyexif — pip install easyexif · libregistry