Skip to content

TechWhizKid/ImageKleaner

Repository files navigation

ImageKleaner

When you take a picture, you capture more than just an image. Smartphones and digital cameras embed additional data within the picture file, known as EXIF metadata. This metadata includes information such as:

  • Make and model of the device used to take the photo
  • Dimensions and pixel density of the photo
  • Camera settings (zoom, aperture, flash, etc.)
  • Date, time, and location where the photo was taken
  • Orientation of the device
  • Altitude and speed of the photographer
  • Copyright information

However, this metadata can pose privacy and security risks. This simple tool can be used to remove any EXIF metadata from png, jpg and jpeg images.

Installation

Static Badge

Download the latest binary release from here or follow the steps bellow:

  1. Clone the repository:

    git clone https://github.com/TechWhizKid/ImageKleaner.git
  2. For Python - Install the required dependencies using pip:

    • For Windows CMD / PowerShell
    cd ImageKleaner && pip install -r requrements.txt
    • For Linux / MacOS
    cd ImageKleaner && pip3 install -r requrements.txt
  3. Run the application:

    • For Python:

      • For Windows CMD / PowerShell
      ImageKleaner.py
      • For Linux / MacOS
      python3 ImageKleaner.py
      
    • For Java:

      java ImageKleaner.java
      

ScreenShot

Python App Window Java App Window