An open API service indexing awesome lists of open source software.

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

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
```