Convert images to PNG and strip metadata with one click
Features • Installation • Usage • Formats • License
A stupid simple GTK4/Libadwaita app that does exactly what it says:
- Select images (as many as you want)
- Click convert
- Get PNGs with all metadata stripped
No bloat. No complexity. Just PNG conversion with privacy in mind.
| Feature | Description |
|---|---|
| 📁 Bulk Selection | Select multiple images at once |
| 🔒 Metadata Stripping | Removes EXIF, XMP, IPTC data for privacy |
| 🔄 Format Conversion | JPG, WebP, GIF, BMP, TIFF → PNG |
| 📂 Custom Output | Choose where converted files go |
| 📊 Progress Tracking | See conversion progress in real-time |
| 🎨 Native Look | Beautiful Libadwaita interface |
# Install GNOME runtime if you don't have it
flatpak install flathub org.gnome.Platform//47 org.gnome.Sdk//47
# Clone and build
git clone https://github.com/KowaiAI/StupidSimpleImageFile2PNG.git
cd StupidSimpleImageFile2PNG
flatpak-builder --user --install --force-clean build io.github.bulkimageconverter.yml
# Run
flatpak run io.github.bulkimageconverterUbuntu/Debian:
sudo apt install python3-gi python3-gi-cairo gir1.2-gtk-4.0 libadwaita-1-dev python3-venvFedora:
sudo dnf install python3-gobject gtk4 libadwaita python3-virtualenvArch:
sudo pacman -S python-gobject gtk4 libadwaita python-virtualenvgit clone https://github.com/KowaiAI/StupidSimpleImageFile2PNG.git
cd StupidSimpleImageFile2PNG
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtpython main.py- Launch the app
- Click "Browse" to select images
- (Optional) Change the output folder
- Click "Convert to PNG"
- Done! Your metadata-free PNGs are ready
~/Pictures/converted/
| Input Format | Extensions |
|---|---|
| JPEG | .jpg, .jpeg |
| WebP | .webp |
| GIF | .gif |
| BMP | .bmp |
| TIFF | .tiff, .tif |
| PNG | .png (for metadata stripping) |
Output: Always PNG with no metadata.
Images can contain hidden information:
- 📍 GPS coordinates - Where the photo was taken
- 📅 Timestamps - When it was taken
- 📱 Device info - Camera/phone model
- 👤 Author info - Your name, software used
This app removes all of that automatically.
# Using exiftool
exiftool your_converted_image.png
# Should show minimal/no metadata- UI: GTK4 + Libadwaita
- Image Processing: Pillow (PIL)
- Language: Python 3
- Packaging: Flatpak
MIT License - Do whatever you want with it.
Made with ❤️ for the Linux community