Skip to content
AI Watermark Remove

Remove C2PA Content Credentials from images

A C2PA manifest is a signed record of what made your image, sitting inside the file where anyone can read it. This takes it out and leaves your pixels alone.

Drop an image here, or click to pick one

PNG, JPEG or WebP · up to 5 MB for free

We take out the hidden data: Content Credentials, EXIF, XMP. Your pixels are copied through untouched, so the picture itself does not change.

Checking is free: 5 texts and 2 images a day, no signup.

Checking your text

    What C2PA is

    C2PA, the Coalition for Content Provenance and Authenticity, is marketed as Content Credentials. It is a standard for embedding a cryptographically signed record of an asset's origin and edit history directly inside the file.

    It is backed by Adobe, Microsoft, Google, OpenAI, Sony, Nikon, Leica, among others. Most major image generators now attach one automatically, and a growing number of cameras and editing tools do too.

    The manifest names the software that created the asset and records edit actions. It is signed, so tampering is detectable. Anyone can read it with the free Content Credentials verifier, no special access required.

    Physically it lives in a JUMBF container: a caBX chunk in PNG, an APP11 segment in JPEG, a C2PA chunk in WebP. It is metadata: data about the image, stored alongside the image rather than inside the picture itself.

    How this removes it without degrading the image

    The naive way to strip metadata is to open the image in an editor and re-save it. For JPEG that costs you a generation of compression quality every time, and it is unnecessary.

    This tool parses the container structure instead. It walks the chunk or segment list, drops the ones carrying provenance, and writes the survivors back out. The compressed image data is copied through byte for byte and never decoded: the IDAT chunks in a PNG, the entropy-coded scan in a JPEG, the VP8 chunk in a WebP. The output pixels are bit-identical to the input pixels.

    A few things are kept deliberately. The ICC colour profile stays, because dropping it makes colours shift in colour-managed viewers. The Adobe APP14 marker in JPEG stays, because it declares the colour transform and removing it can turn an image's colours inside out. APNG and animated WebP control chunks stay, because dropping those breaks the animation. For WebP the VP8X feature flags are rewritten so the file does not advertise metadata chunks that are no longer present.

    What C2PA removal does not do

    Removing the manifest removes the manifest. A verifier will report no Content Credentials afterwards, and you can confirm that yourself with Adobe's public verifier.

    It does not remove a pixel-domain watermark. If the image came from a generator that also embeds SynthID or a similar invisible pixel mark, that mark is in the picture data and survives metadata removal entirely, as well as cropping, resizing, re-compression, screenshotting.

    It also does not remove a visible watermark burned into the pixels. That is an inpainting problem, not a metadata one.

    When the tool sees evidence that an image came from a generator known to use pixel watermarking, it tells you so on the results screen rather than letting you assume the file is now anonymous.

    Questions

    Will the image look different afterwards?
    No. The pixel data is copied unchanged and never re-encoded, and the colour profile is preserved. The file is smaller because the metadata is gone; the picture is identical.
    Which formats work?
    PNG, JPEG, WebP. Animated PNG and animated WebP work too. GIF is detected but not yet supported. PDF and video are not supported yet.
    Can C2PA be recovered after removal?
    Not from the cleaned file, because the bytes are gone. C2PA also supports "soft binding", where a manifest is stored in an external registry and matched back to an image by a perceptual fingerprint or watermark. If a generator used soft binding, a lookup could still associate the image with its origin even with no metadata in the file.
    Does stripping metadata also remove GPS and camera data?
    Yes. EXIF removal takes the GPS coordinates, camera model, lens, timestamps, serial number with it. For photographs that is often the more consequential privacy win.

    Related tools