Table of Contents
For AI deployments generating public-facing content (images, articles, video), watermarking and provenance tracking matter increasingly. Regulatory pressure (EU AI Act, US executive orders) makes these table-stakes for some use cases by mid-2026.
Three approaches: statistical text watermarks (KGW / SynthID-text) detectable algorithmically, image watermarks (SynthID-image, Stable Signature, Glaze adversarial), content provenance metadata (C2PA standard for cryptographically signed metadata). Most production: C2PA for images / video; statistical watermarks for text where regulatory requires.
Methods
- Text statistical watermarks (KGW, SynthID-text): bias the model's sampling toward statistically-detectable patterns. Detectable algorithmically with high specificity. Slight quality cost.
- Image visible watermarks: stamp / overlay. Easy to apply; easy to remove (cropping).
- Image invisible watermarks: SynthID-image, Stable Signature. Robust to common transformations (resize, JPEG compression).
- Adversarial protection (Glaze, Nightshade): poisons output for downstream training; not detection.
- Content provenance metadata (C2PA): cryptographically signed metadata travels with content; gives chain-of-custody.
C2PA
C2PA (Coalition for Content Provenance and Authenticity) is the standard adopted by Adobe, Microsoft, Google, OpenAI for content provenance. Signed metadata describes:
- Originating tool (your AI deployment)
- Generation parameters
- Edit history
- Cryptographic signature of issuer
For self-hosted: implement via the C2PA Rust library or Python bindings; sign with your organisation's key. Adds ~5-50 KB to image / video files.
Regulatory
- EU AI Act: requires marking AI-generated content (text, image, audio, video) as such, with detection-friendly methods
- US executive orders: federal use cases require provenance; expanding to private sector
- Industry-specific: news, advertising, election communications increasingly require disclosure
Verdict
For AI deployments generating public-facing content, watermarking and provenance are increasingly required. C2PA for images/video is the right modern standard; statistical text watermarks for jurisdictions / use cases requiring it. Build into the deployment from day one rather than retrofitting.
Bottom line
C2PA for images; statistical text watermarks for regulated text. See supply chain.