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.
pip install -r requirements.txt)cd skills/gemini-watermark-remover/scripts && pip install -r requirements.txtpython remove_watermark.py <input-image> <output-image>input-image: path to the Gemini watermarked imageoutput-image: path for the cleaned image (format inferred from extension)Example:
python remove_watermark.py ./in.png ./out.png
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.remove_watermark.py for one-off processing.references/algorithm.md.