RatedWithAI

RatedWithAI

Accessibility scanner

AI Transparency & ProvenanceAugust 9, 2026

The Watermark Was Fine. Your Image Resizer Ate It.

AB 853 pushed California's provenance rules past the companies that generate content and onto the ones that move it — platforms that strip metadata on upload, and devices that capture it in the first place. It turns a model-provider obligation into a pipeline problem, which is a very different engineering conversation.

Supply Chain
Obligations extended from model providers to large platforms and capture devices
Preserve, Don't Strip
Re-encoding on upload was the failure mode that made provider-side marking useless
Field-Level Policy
Privacy stripping and provenance retention now have to coexist in one metadata rule

The Hole AB 853 Was Written To Close

The California AI Transparency Act, enacted as SB 942, required covered generative AI providers to embed latent provenance in their outputs, offer users a visible disclosure option, and publish a free public detection tool. Every one of those duties attaches to the company that produced the model. We covered that original framework in our SB 942 compliance guide.

The design had a structural weakness that anyone who has worked on media infrastructure spotted immediately. Provenance metadata is fragile in exactly the places content becomes consequential. A generated image carries a signed manifest until it is uploaded somewhere that re-encodes it for delivery, at which point the manifest is discarded as a side effect of a resize that nobody thought of as a compliance event. The disclosure survives inside the ecosystem that created it and dies on contact with distribution.

AB 853 responds by moving obligations outward along the supply chain: onto large online platforms, which are expected to retain and expose provenance data attached to content they receive, and onto capture devices, which are expected to support attaching provenance at the moment of capture so that authentic material can be positively marked rather than merely unlabeled. It also revised the compliance timeline, giving the newly covered categories room to build.

Why the Capture Device Half Matters More Than It Looks

Marking synthetic content solves half of the problem, and arguably the easier half. The harder problem is that unmarked content becomes ambiguous: absence of a synthetic label could mean authentic, or it could mean the label was stripped, or it could mean the generator was not covered. A negative result from a detection tool is weak evidence, which limits how much anyone can rely on it.

Provenance at capture inverts that. If a camera signs an assertion that a given frame came from a physical sensor at a given time, authentic material carries positive evidence of its own origin rather than relying on the absence of a synthetic mark. That is the direction the industry consortium work — C2PA Content Credentials and the hardware implementations built around it — has been heading, and AB 853 is the first significant statutory push behind it.

The consequence for anyone building verification into a product is that the useful question changes from "is this AI-generated" to "what does this content assert about its own origin, and is that assertion signed by someone I trust." Products designed around the first question age badly.

The Pipeline Audit Is the Actual Work

Whether or not your company is a named covered entity, the operational task AB 853 implies is the same and it is concrete: take one asset that carries provenance, push it through your entire media path, and check at each hop whether the manifest is still there.

  • Upload handler. Many strip all metadata on ingest as a blanket privacy or size measure. This is the most common single point of loss.
  • Image processing. Resizing and format conversion libraries drop unknown metadata blocks by default unless explicitly told to carry them through.
  • Video transcoding. Provenance survival across codecs and containers is materially worse than for stills and needs its own test.
  • CDN and image optimization. On-the-fly optimizers — including the ones built into modern web frameworks — frequently re-encode and discard everything not required for rendering.
  • Email and messaging embeds. The last hop, and the one nobody tests.

Teams that run this for the first time usually find loss in the second or third step, in infrastructure that predates any AI feature and was never associated with compliance by anyone. That is the finding worth having, because it is cheap to fix once located and impossible to reason about from a policy document.

Resolving Provenance Against Privacy Stripping

The obvious objection to "stop stripping metadata" is that stripping metadata is a privacy control. It is, and a good one: user uploads routinely carry GPS coordinates, device serial identifiers, and timestamps that reveal more than the uploader intended. A rule that says preserve everything trades one harm for another.

The resolution is granularity. Provenance assertions and their signatures are a distinct block from EXIF location and device fields, and a pipeline can be taught to carry the former while discarding the latter. What this requires is that someone own a metadata policy at field level instead of the single boolean most systems currently implement. That is a half-day of design and a small amount of code, and it is the difference between a defensible position and a choice between two failures.

What To Do Before the Dates Land

  • Run the survival audit described above and write down where provenance dies. This is the artifact everything else depends on.
  • Write a field-level metadata policy that separates provenance assertions from personal capture data, and implement it in the ingest path rather than per-feature.
  • Decide your entity classification in writing — provider, platform, device maker, or none of the above — per product surface, with reasoning. "We looked and concluded no" is a much better answer than silence.
  • Ask your vendors. Your CDN, image optimizer, DAM, and video platform either preserve Content Credentials or they do not, and most have a documented answer now. Put it in the renewal.
  • Expose provenance where you have it. If your product displays media, surfacing available credentials is a small feature that gets ahead of both the platform duty and the buyer expectation.

Frequently Asked Questions

Does AB 853 replace SB 942 or sit alongside it?

It amends it. The AI Transparency Act remains the operative framework and the provider-side duties — latent provenance, the user-selectable visible mark, the free public detection tool, and the licensee revocation mechanic — are unchanged in substance. AB 853 adjusts timing and adds newly covered categories. If you are a covered provider, read the two together rather than treating the amendment as a separate obligation set.

How does this interact with the EU AI Act's marking requirements?

They point the same direction with different emphasis. The EU AI Act requires providers of generative systems to mark synthetic output in a machine-readable way and imposes labeling duties around deepfakes; California is more prescriptive about the detection tool and now about downstream preservation. A team that builds one provenance layer to the stricter reading of both, and documents the mapping, does the work once. Building separately to each produces two partial implementations.

Our framework's built-in image optimizer strips metadata. Is that a compliance problem?

It is a problem worth fixing regardless of whether it is your compliance problem. Most modern web frameworks re-encode images at request time for performance and discard everything not needed to render, which silently destroys any credential the source asset carried. The fix is usually a configuration change or routing provenance-bearing assets around the optimizer. Find out which by testing rather than by reading the docs, since behavior varies by version and format.

Is C2PA required by the statute?

No. The law is written in terms of the function — provenance that is detectable, informative, and reasonably persistent — rather than mandating a specific standard, which is the right drafting choice given how fast the tooling moves. C2PA Content Credentials is where implementation has concentrated and is the pragmatic default, but the obligation is to achieve the outcome, and a provider using a different technical approach that meets the functional requirements is not out of compliance for that reason.

What is the enforcement posture likely to be at first?

The AI Transparency Act provides for civil penalties assessed per violation per day with enforcement by the Attorney General and by city and county attorneys. Early enforcement in newly technical regimes tends to concentrate on the requirements an outsider can verify without discovery — whether the detection tool exists and functions, whether the visible marking option is actually offered, whether provenance survives an ordinary upload. Those are also the cheapest things to get right, which is a reason to sequence them first.

Test One Asset End to End This Week

Everything AB 853 asks for downstream reduces to one empirical question: when your media reaches a third party, is the provenance still attached. You can answer it in an afternoon by following a single generated image through upload, storage, resize, transcode, CDN, share link, and email embed, checking the manifest at each hop.

Most teams discover the loss happens somewhere they would never have looked, inside infrastructure nobody associates with AI at all. That result is the roadmap — and it is the same answer an enterprise buyer or a regulator will ask you for.