π« The Pain Point
You send a photo of your expensive watch to a buyer. The photoβs EXIF data contains the precise GPS coordinates of your home. Cyberstalking risk is real.
π Agentic Solution
Privacy Scrubber: Removes the hidden data layer while keeping the visible image untouched.
Key Features:
- Safe: Creates a new copy without metadata, never modifying the original.
- Bulk: Cleans entire albums.
βοΈ Phase 1: Commander (Quick Fix)
For a quick scrub.
Prompt:
βRemove Exif metadata (especially GPS) from
photo.jpgusing Pillow. Save asclean.jpg.β
Result: Safe photo.
ποΈ Phase 2: Architect (Permanent Tool)
For Privacy conscious users.
Engineering Prompt:
**Role:** Python Security Tool Dev
**Task:** Create a "Photo Metadata Scrubber".
**Requirements:**
1. **GUI:**
* Select Folder.
* "Scrub" button.
2. **Logic:**
* Open image -> Create new fresh Image object (data=image.getdata()).
* This copy process naturally drops the Exif metadata attached to the file header.
* Save to 'Cleaned' folder.
3. **Deliverables:** `scrub_gps.py`, `run.bat` (Windows), `run.sh` (Mac).
π§ Prompt Decoding
- New Image Method: The safest way to scrub data is not to βdeleteβ tags, but to copy the pixels to a brand new canvas. This ensures absolutely no hidden data is transferred.
π οΈ Instructions
- Copy Prompt -> Paste -> Run.
- Select Folder -> Scrub.