https://github.com/codersuresh/metadata_checker_remover
A simple tool to check and remove metadata from a image file using exiv2
https://github.com/codersuresh/metadata_checker_remover
Last synced: 3 months ago
JSON representation
A simple tool to check and remove metadata from a image file using exiv2
- Host: GitHub
- URL: https://github.com/codersuresh/metadata_checker_remover
- Owner: coderSuresh
- Created: 2024-08-05T16:52:01.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T16:57:41.000Z (10 months ago)
- Last Synced: 2025-01-07T20:11:55.579Z (5 months ago)
- Language: C++
- Size: 8.41 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Metadata Checker & Remover
A simple tool built in C++ using `exiv2` library to check and remove metadata from images.
Currently tested in Linux (Ubuntu)
## Compile & Run
Compiling `metadata_checker.cpp`
```
g++ -std=c++17 -o metadata_checker metadata_checker.cpp -I/path/to/exiv2-0.28.3-Linux64/include -L/path/to/exiv2-0.28.3-Linux64lib -lexiv2
```Running `metadata_checker`
```
./metadata_checker
```Compiling `metadata_remover.cpp`
```
g++ -std=c++17 -o metadata_remover metadata_remover.cpp -I/path/to/exiv2-0.28.3-Linux64/include -L/path/to/exiv2-0.28.3-Linux64lib -lexiv2
```Running `metadata_remover`
```
./meteadata_remover
```