Image · sync
exif-clean
Strip EXIF, GPS, and other metadata from photos. Privacy in one call.
Before metadata
About
exif-clean re-encodes images through sharp without preserving metadata — the cleanest cross-format guarantee that EXIF, GPS, XMP, and ICC segments are dropped. Before re-encoding it parses what was in the file via exifr and returns a `removed` summary including the camera make/model, capture timestamp, and GPS coordinates if any.
Use it for: stripping geotags from photos before posting, anonymising user-uploaded images, scrubbing camera serial numbers before publishing samples.
Output format: by default the source format is preserved (jpeg/png/webp). Pass `outputFormat` to force a target. Output is hosted under /r/ for download.
{
"type": "object",
"required": [
"imageBase64"
],
"properties": {
"imageBase64": {
"type": "string",
"description": "Base64-encoded image bytes (raw or data: URL)."
},
"outputFormat": {
"type": "string",
"enum": [
"preserve",
"jpeg",
"png",
"webp"
],
"default": "preserve",
"description": "Target format. 'preserve' keeps the source format."
}
}
}These are descriptive previews. Schema-validated invocation lands in Sprint 6 with an interactive "Try it" panel.
Reviews (0)
No reviews yet — be the first to share your experience.