gemini-watermark-remover
Remove the visible Gemini AI watermark from images using reverse alpha blending. Use when asked to strip Gemini watermarks, batch-process Gemini images, or build/modify a CLI script that removes the bottom-right Gemini watermark without HTML or server-side components.
By rookie-ricardo · 1,721 installs
npx skills add rookie-ricardo/erduo-skills --skill gemini-watermark-remover
Source repository · Upstream listing
Gemini Watermark Remover
Dependencies
Python 3.9+
Pillow (install with pip install r requirements.txt )
Quick start
1) Install dependencies in the scripts folder:
cd skills/gemini watermark remover/scripts && pip install r requirements.txt
2) Run the CLI:
python remove watermark.py <input image <output image
CLI usage
Parameters:
input image : path to the Gemini watermarked image
output image : path for the cleaned image (format inferred from extension)
Example:
What this skill provides
scripts/remove watermark.py : CLI entry point and core algorithm.
assets/bg 48.png , assets/bg 96.png : Pre captured watermark alpha maps.
references/algorithm.md : Math, detection rules, and limits.
Workflow
1) Use remove watermark.py for one off processing.
2) If you need to adjust detection rules or alpha logic, read references/algorithm.md .
Notes
The script uses Pillow for image IO and per pixel edits.
Output format is inferred from the output file extension by Pillow.