Gemini Watermark Remover Logo
Gemini Watermark Remover

About Gemini Watermark Remover

Why This Tool Exists

Google Gemini (powered by Imagen 3) and Google Veo add a semi-transparent 4-point sparkle watermark to every generated image and video. While Google now allows users to disable this watermark for future generations via Settings → Media watermark, there is no official way to clean watermarks from files you have already downloaded.

This tool was built to solve that problem using mathematical inverse alpha unblending — a technique that reverses the exact transparency compositing formula rather than guessing what was behind the watermark with AI inpainting.

How It Works

Google composites the visible watermark onto images using standard linear alpha blending:

Watermarked = Background × (1 − α) + Logo × α

When we know the watermark image (Logo) and its transparency level (α), we can solve for the original background pixels:

Background = (Watermarked − Logo × α) / (1 − α)

This formula is applied pixel-by-pixel only within the small bounding box of the watermark. All surrounding pixels remain completely untouched. For videos, each frame is decoded individually using WebCodecs, processed, and re-encoded with the original audio track passthrough intact.

Important Limitations

Privacy

All processing runs entirely inside your local web browser using HTML5 Canvas and WebCodecs. No images, videos, or personal data are uploaded, stored, or transmitted to any server. There is no account system, no analytics tracking of your media, and no server-side processing of any kind. See our full Privacy Policy.

Built By

Gemini Watermark Remover is developed and maintained by Kushal Lukhi.

For questions, feedback, or bug reports, please open an issue on GitHub.