All posts
Technical··6 min read

SynthID vs the Visible Watermark: What Stays After You Strip the Logo

Every Gemini image carries three separate provenance layers. Removing the visible sparkle only affects one of them. Here is what each layer does, who can see it, and which ones you can actually scrub.

When you download a Gemini image and look at the corner, you see the four-point sparkle — the visible watermark. What you might not realize is that there are two more provenance signals baked into the same file. Google layers them as a defense-in-depth strategy: if anyone defeats one layer, the other two remain. Understanding the three layers matters if you are using Gemini images for client work, social media, or anything that needs to be provenance-checkable.

Layer 1 — The visible sparkle

The four-point sparkle in the bottom-right corner. A semi-transparent overlay drawn on top of the image pixels at a fixed position. Google applies it as the final step in the generation pipeline, after the model has produced the image and before the file is written.

Who can see it: anyone looking at the file.
Can it be removed? Yes — and trivially so. The reverse alpha-blend equation used by this tool recovers the original pixels in milliseconds. After August 14, 2026 Google also lets you turn the layer off entirely for new generations via the Media Watermark toggle.

Layer 2 — SynthID

SynthID is the second layer, and the one most people have not heard of. It is an invisible watermark embedded into the pixel values themselves across the entire image. Unlike the visible sparkle, which sits on a small corner, SynthID touches every pixel. The signal is statistically distributed across the image so that no single pixel carries a meaningful piece of the watermark — instead, the watermark emerges from the joint distribution of many pixels.

SynthID was developed by Google DeepMind and announced in 2023. By 2025 Google said more than 10 billion pieces of content carried the signal. It survives common edits — cropping, compression, light filtering — far better than the visible badge ever did, because the signal is not localized to a corner.

Who can see it: no human. Detection requires Google's own verifier or compatible third-party tools.
Can it be removed? Not in any practical lossless way. The signal is mathematically interwoven with the pixel values; there is no inverse transformation. The only known removal method is lossy regeneration: feed the image through a different generative model that re-synthesizes the picture, then run image-to-image at low denoising strength to preserve the composition. The result is visually similar but no longer carries the SynthID signal. Some open-source projects have begun experimenting with this approach.

Layer 3 — C2PA Content Credentials

C2PA is an open standard from the Coalition for Content Provenance and Authenticity. It defines a signed metadata block attached to image, video, and audio files that records the editing history and the originator of the content. A C2PA-compliant image carries a manifest with the AI model's identity, a timestamp, and a cryptographic signature.

Google embeds C2PA metadata in Gemini exports. Adobe's Content Credentials tool, several open-source inspectors, and Google's own newly-open-sourced Credentio library can read it. When you upload an image to Gemini and ask "is this AI-generated?", the system is partly checking SynthID and partly checking the C2PA manifest.

Who can see it: software that reads C2PA manifests. Adobe Photoshop, Lightroom, and a growing list of media tools display the credentials as a small "CR" badge.
Can it be removed? Yes — by stripping the metadata. C2PA is not embedded into pixels; it travels alongside the file. Re-saving the image through most photo editors strips the manifest. Re-uploading through a social network usually strips it too. Note that stripping C2PA does not strip SynthID.

What this tool removes

This tool removes Layer 1 only: the visible sparkle. The pipeline runs reverse alpha blending pixel-wise in the corner box. Outside the watermark zone, every byte of the image is preserved. The result is byte-identical to what Gemini would have produced if Google had never stamped the logo.

What the tool does not do:

  • Remove SynthID. There is no inverse for that operation.
  • Strip C2PA metadata. That would require either a metadata-aware editor or a re-save that drops EXIF and XMP blocks.
  • Strip EXIF metadata more generally (GPS, camera info, timestamps). Most Gemini exports carry very little EXIF, but if you want to be thorough, run the cleaned file through a metadata stripper like ExifTool.

What you should disclose

Stripping the visible sparkle does not make a Gemini image undetectable. SynthID detection tools can still flag it as AI-generated, and C2PA inspectors can still read the manifest. If you publish an AI-generated image, common sense and increasingly regulators require disclosure regardless of whether the visible badge is present. Use this tool for clean client deliverables, not for deception.

The future of provenance

Google's August 2026 decision to make the visible sparkle optional is a small piece of a larger shift: provenance is moving from the visible surface of the file to the underlying machine-readable signal. SynthID is the load-bearing layer. C2PA is the interoperable standard. The visible badge was always the least important of the three — it was easy to defeat, easy to crop, easy to ignore.

That is good news for users who want clean files for legitimate work, and a reminder that the deeper layers — SynthID and C2PA — are what regulators and platforms are starting to check.

Strip the visible sparkle

SynthID and C2PA stay. The badge in the corner goes.

Open the tool