Image Metadata Remover β€” Strip EXIF & GPS avatar

Image Metadata Remover β€” Strip EXIF & GPS

Pricing

from $0.0025 / image cleaned

Go to Apify Store
Image Metadata Remover β€” Strip EXIF & GPS

Image Metadata Remover β€” Strip EXIF & GPS

Bulk-remove EXIF, GPS location, IPTC and XMP metadata from images while keeping the picture intact. Export clean JPG/PNG/WebP for privacy and GDPR.

Pricing

from $0.0025 / image cleaned

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Image Metadata Remover β€” Strip EXIF, GPS & Hidden Data

Remove EXIF, GPS location, IPTC and XMP metadata from images in bulk β€” and get back clean JPG, PNG, WebP, AVIF or TIFF files with the picture untouched. Point this Image Metadata Remover at a list of image URLs and it returns privacy-safe copies plus a report of exactly what was stripped from each one. No design software, no manual work.

Why remove image metadata?

Every photo taken on a phone or camera carries hidden metadata: GPS coordinates of where it was shot, the device model, serial numbers, timestamps, editing history and more. Publishing images with that data attached can leak someone's home address or a business's location. This tool wipes it before your images go public.

What it does

  • Strips EXIF (camera, GPS, timestamps), IPTC (captions, keywords) and XMP (editing history) metadata.
  • Keeps the image pixel-perfect β€” same resolution, same quality.
  • Optionally bakes in the correct orientation first, so photos never come out rotated.
  • Optionally keeps the color profile (ICC) so colors don't shift.
  • Optionally converts every image to one format (JPEG/PNG/WebP/AVIF/TIFF).
  • Returns a per-image report of what metadata was found and removed.

Use cases

  • Privacy & GDPR β€” scrub location and personal data before publishing user-submitted photos.
  • Marketplaces & classifieds β€” remove seller location data from listing images at scale.
  • Publishing & journalism β€” clean source photos before they go on the web.
  • Real estate & agencies β€” strip metadata from property and client images in bulk.
  • Dataset preparation β€” normalize and de-identify image sets before sharing or training.

Input

Provide one or more image URLs and choose your options.

{
"imageUrls": [
"https://example.com/photo1.jpg",
"https://example.com/photo2.png"
],
"keepOrientation": true,
"keepColorProfile": true,
"outputFormat": "original"
}
FieldTypeDescription
imageUrlsarrayDirect links to the images to clean (JPG, PNG, WebP, AVIF, TIFF, GIF).
keepOrientationbooleanBake rotation into the pixels before stripping, so images stay upright. Default true.
keepColorProfilebooleanPreserve the ICC color profile so colors don't shift. Default true.
outputFormatstringoriginal, or convert all to jpeg / png / webp / avif / tiff.

Output

Each image becomes one dataset item, and the cleaned file is saved to your key-value store.

{
"sourceUrl": "https://example.com/photo1.jpg",
"cleanedUrl": "https://api.apify.com/v2/key-value-stores/.../records/clean/0001-photo1.jpg",
"format": "jpeg",
"width": 4032,
"height": 3024,
"originalBytes": 3785412,
"cleanedBytes": 3719004,
"metadataRemoved": ["EXIF", "GPS", "XMP"],
"hadMetadata": true,
"ok": true
}

Output schema

FieldTypeDescription
sourceUrlstring (URL)The original image URL.
cleanedUrlstring (URL)Link to the cleaned image in your key-value store.
formatstringDetected image format.
widthintegerImage width in pixels.
heightintegerImage height in pixels.
originalBytesintegerOriginal file size.
cleanedBytesintegerCleaned file size.
metadataRemovedarrayWhich metadata blocks were removed (EXIF, IPTC, XMP, ICC…).
hadMetadatabooleanWhether the original had any metadata.
okbooleanWhether the image was processed successfully.

FAQ

Does it change how the image looks? No. The pixels, resolution and quality stay the same β€” only the hidden metadata is removed (and orientation is corrected if enabled).

Does it remove GPS location? Yes. GPS coordinates live in EXIF, which is fully stripped.

Can I convert formats at the same time? Yes β€” set outputFormat to convert every image to JPEG, PNG, WebP, AVIF or TIFF while cleaning it.

What export formats are supported for the results? The dataset exports to JSON, CSV, Excel and XML; cleaned images are saved as files in the key-value store.

Can I automate or integrate it? Yes. Connect it with almost any app via integrations on the Apify platform β€” Make, Zapier, Slack, GitHub, Google Drive and more, plus the Apify API and webhooks.

Notes

Original clean-room implementation. You are responsible for how you use the processed images.