Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kde/libkexiv2
Wrapper around Exiv2 library to manipulate picture metadata as EXIF and XMP
https://github.com/kde/libkexiv2
Last synced: 4 days ago
JSON representation
Wrapper around Exiv2 library to manipulate picture metadata as EXIF and XMP
- Host: GitHub
- URL: https://github.com/kde/libkexiv2
- Owner: KDE
- Created: 2015-09-18T13:30:45.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-26T13:07:39.000Z (7 months ago)
- Last Synced: 2024-05-01T12:02:03.018Z (7 months ago)
- Language: C++
- Homepage: https://invent.kde.org/graphics/libkexiv2
- Size: 991 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSES/BSD-3-Clause.txt
- Authors: AUTHORS
Awesome Lists containing this project
README
EXIV2 Library interface for KDE
-- AUTHORS ------------------------------------------------------------
See AUTHORS file for details.
-- ABOUT --------------------------------------------------------------
Libkexiv2 is a wrapper around Exiv2 library to manipulate pictures
metadata as EXIF/IPTC and XMP. Metadata interface follow this paper:http://www.metadataworkinggroup.com/pdf/mwg_guidance.pdf
The library documentation is available on header files.
-- DEPENDENCIES -------------------------------------------------------
CMake >= 3.0.0 https://www.cmake.org
ECM >= 1.1.0 https://commits.kde.org/extra-cmake-modules
libqt >= 5.9.0 https://qt.io
libexiv2 >= 0.24.0 https://www.exiv2.org-- INSTALL ------------------------------------------------------------
Usual CMake options:
-DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer.
-DCMAKE_BUILD_TYPE : decide which type of build you want. You can chose between "debug", "profile", "relwithdebinfo" and "release". The default is "relwithdebinfo" (-O2 -g).Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with debug object enabled):
"cmake . -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"