Pricing P2P Encrypted Chat Desktop App Browser Extension
Upload a file

How to Remove EXIF Data from Photos and Metadata from Files: Complete Guide

— Written by Brendan G., Founder & Developer

Metadata removal and privacy protection showing EXIF data scrubbing and file privacy security

Every file you create or share contains hidden information that most people never see. This metadata can reveal your location, the device you used, when you created the file, and sometimes even your personal details. Understanding how to remove this data is essential for protecting your privacy in an increasingly connected world.

What is File Metadata?

Metadata is data about data—information embedded in your files that describes the file itself rather than its visible content. Think of it as a hidden layer of information that travels with every file you create, edit, or share. This metadata exists in nearly every digital file format you use daily, from the photos on your phone to the documents you create at work.

For photographs, this embedded data is typically stored in EXIF (Exchangeable Image File Format) fields. When you take a photo with your smartphone, the device automatically records an extensive set of technical details: the exact camera settings used (ISO sensitivity, aperture, shutter speed, focal length), the make and model of your device, the date and time down to the second, and in many cases, the precise GPS coordinates of where the photo was taken. Some cameras even record the direction you were facing when you pressed the shutter. This information can be incredibly useful for photographers who want to remember their settings or organize their photo libraries by location, but it can also be a massive privacy leak when shared publicly or with people you don't fully trust.

Documents created in Microsoft Word, Google Docs, or other word processors carry their own set of metadata fingerprints. These files often contain the author's name and email address, the company or organization name if you're using a corporate version of the software, the total editing time spent on the document, revision history showing when changes were made and sometimes by whom, hidden comments that were never deleted, and even watermarks or tracking identifiers. In many embarrassing cases, journalists and government agencies have published documents with sensitive information still buried in the metadata—information that was supposed to be private but was unknowingly exposed to the world.

PDF files are particularly notorious for metadata accumulation. A PDF document might appear to be a simple final document, but underneath it often carries the name of the software that created it, the original author's name and contact information, keywords and subject fields that describe the document, creation and modification timestamps, and even data about previous versions if the PDF document was edited multiple times. Corporate documents converted to PDF sometimes retain the entire chain of custody—every person who touched the file and every tool that processed it.

Audio and video files include metadata tags like artist name, album title, genre, duration, bitrate, codec information, and sometimes even location data if the video was recorded on a smartphone with location services enabled. Music files often include album art embedded as metadata, and professional audio recordings might include detailed information about the recording equipment and studio used.

The critical thing to understand about metadata is that it's almost always invisible when you view the file normally. You open a photo and see the image. You open a document and read the text. But the metadata is still there, traveling silently with the file, waiting to be extracted by anyone who knows where to look. And extracting it is trivially easy—there are free tools and simple commands that can dump all of a file's metadata in seconds. What you don't see can absolutely hurt you.

Why Remove Metadata?

The question isn't really whether metadata can reveal sensitive information—it absolutely can. The real question is whether you're aware of what you're revealing when you share files online. Let me walk through some scenarios that illustrate why metadata removal matters in practical, sometimes frightening ways.

Start with the most dramatic example: location tracking through photo metadata. When you take a photo with your smartphone and post it to social media, that image may contain the exact GPS coordinates of where you were standing when you took it. This isn't approximate?it's precise down to a few meters. People have been stalked, robbed, and worse because they posted photos from their home without realizing those photos contained their home address embedded in the metadata. Journalists covering sensitive topics, activists working in hostile environments, and everyday people fleeing dangerous situations have all been compromised by GPS data they didn't know they were sharing. Even if you're not in a high-risk category, do you really want strangers on the internet to know the exact location of your home, your children's school, or your regular hangout spots? That information is sitting in your photo metadata right now unless you've actively removed it.

Document metadata can be equally damaging in different ways. Imagine you're job hunting and you send a resume to a potential employer. That resume is a Word document you've been editing for months. Unknown to you, the document metadata reveals that you created the file while you were still employed at your current company (because the company name is embedded in the file properties), and the editing timestamps show you've been working on it during business hours. Your prospective employer might never mention it, but that metadata paints a picture of someone editing their resume on company time using company resources—not exactly the first impression you wanted to make. Or consider a consultant submitting a proposal to a client. If the metadata reveals that the "custom" proposal was originally created for a different client (because the author field hasn't been updated), you've just exposed the fact that you're recycling work and undermined your claim of personalized service.

In more serious contexts, document metadata has exposed classified information, revealed confidential sources, and embarrassed major organizations. There are documented cases of government agencies accidentally publishing sensitive documents where the metadata contained names of intelligence officers, law firms sending contracts where tracked changes revealed negotiation strategies that were supposed to remain internal, and companies releasing financial documents where the metadata exposed insider information about mergers or layoffs before they were announced. These weren't sophisticated hacks—they were simple failures to clean metadata before clicking "send" or "publish."

Even seemingly innocuous metadata can cause problems. Timestamps can reveal when you actually created or modified a file versus when you claim you did. If you're submitting work with a deadline and the metadata shows you created the file two weeks after you said you started working on it, that's a credibility problem. Device information can expose details about your technical setup that you might not want to share—the make and model of your camera, the version of software you're using, even your operating system preferences. In some cases, this information has been used to target specific devices with malware or to social-engineer further attacks by revealing details about your technical habits and resources.

The underlying theme is this: metadata creates a permanent record of information you might not have intended to share, and once that file leaves your control, you can't undo the exposure. Someone receives your file, extracts the metadata, and now they have information you never explicitly told them. They might not do anything malicious with it—they might not even look at it at all—but the risk is there, and it's entirely preventable. The smart approach is to treat metadata removal as a default step in your file-sharing workflow, not something you think about only when sharing something "really sensitive." Because the truth is, you don't always know in advance what information might turn out to be sensitive later.

How to Remove EXIF Data from Photos

EXIF (Exchangeable Image File Format) data is the hidden information your camera or phone embeds in every photo automatically. A single image can contain your exact GPS coordinates (accurate to a few meters), the device make and model, the camera settings (ISO, aperture, shutter speed), a precise timestamp, and the software used to edit the image. When you share a photo publicly or send it to someone, all of that data travels with it unless you strip it first.

Quickest method — FileShot Metadata Scrubber (works on all platforms): Go to the , upload your photo, and download the cleaned version with all EXIF data permanently removed. This works on any device and file type with no software to install.

Remove EXIF Data on Windows

Windows has a built-in EXIF removal tool:

  1. Right-click the photo file and choose Properties.
  2. Click the Details tab.
  3. Click “Remove Properties and Personal Information” at the bottom.
  4. Select “Remove the following properties from this file”, check all boxes, then click OK.

This strips most EXIF fields including GPS data, camera settings, and timestamps directly. For bulk removal of many photos at once, use ExifTool (free, command-line): exiftool -all= *.jpg removes all metadata from every JPEG in the current folder.

Remove EXIF Data on macOS

macOS Preview can display EXIF data but does not strip it cleanly on its own. The reliable methods are:

  • Export without location in Photos app: Open the photo in Photos, then choose File → Export → Export Photo. Uncheck “Location Information” to export without GPS. Note: this only removes location, not all EXIF.
  • Terminal (full strip): Install ExifTool via Homebrew (brew install exiftool), then run exiftool -all= photo.jpg to remove all EXIF data.
  • FileShot Scrubber: Upload the photo at fileshot.io/tools/scrubber for a no-install solution that preserves image quality.

Remove EXIF Data on iPhone / iOS

By default, iOS strips GPS data when you share a photo through the Photos app — but only if you decline to share your location in the share sheet. To be certain:

  • Using the share sheet: When you tap Share, iOS asks whether to include location. Tap “Don’t Include” when prompted to send without GPS data. Other EXIF fields (camera model, timestamp) may still be included.
  • Turn off location for Camera permanently: Go to Settings → Privacy & Security → Location Services → Camera and set it to Never. Future photos won’t embed GPS coordinates.
  • Full EXIF strip: Use the in your mobile browser to upload and download a fully cleaned photo.

Remove EXIF Data on Android

  • Google Photos: Open the photo, tap the three-dot menu → Edit → scroll down to find location options. Google Photos can remove the location tag but may retain other EXIF fields.
  • Turn off location for your camera app: In your Camera app settings, disable Location Tags or GPS Tag. The exact name varies by manufacturer (Samsung, Pixel, etc.) but it’s usually under Camera Settings → Shooting Methods or similar.
  • Full EXIF strip: Use the in your mobile browser to strip all EXIF fields from any photo.

Remove EXIF Data in Bulk (Any Platform)

When you need to strip EXIF from hundreds or thousands of photos, ExifTool is the standard tool used by professionals:

  • exiftool -all= *.jpg — remove all metadata from all JPEGs in the current folder
  • exiftool -GPS:all= *.jpg — remove only GPS/location data, preserve other EXIF
  • exiftool -r -all= /path/to/folder/ — recursively process all files in a folder

ExifTool is free and open source. Get it at exiftool.org. It processes files in-place and creates a backup with "_original" suffix by default.

What Removing EXIF Data Does (and Doesn’t) Do

Stripping EXIF removes the metadata layer but does not change the actual image pixels. Your photo still looks identical — it just has no embedded location, timestamp, or device information. However, if a photo has been reverse-image-searched or has other steganographic markers, EXIF removal alone won’t address those. For maximum privacy, share through FileShot which encrypts files before upload so even the server never sees them.

How to Remove Metadata from Documents

Word documents, Excel spreadsheets, and other Office files contain:

Office files can contain author name/email, company metadata, creation/modification timestamps, revision history, and even comments or tracked changes that you thought were ?internal only.? Before sharing externally, it's worth running a document inspector and exporting a ?clean? copy.

Microsoft Word/Excel: Go to File — Info — Check for Issues — Inspect Document, select what to remove (Document Properties, Personal Information, etc.), click "Remove All", and save the document with metadata stripped.

Using FileShot: Convert the document to PDF first, then use the metadata scrubber to remove PDF metadata.

How to Remove Metadata from PDFs

PDFs can contain:

PDFs often store creator/producer information, author/subject fields, creation/modification dates, keywords, and annotations. Some PDFs also include embedded resources (fonts, images) that can reveal toolchains or workflows. If you're sharing a PDF publicly or with a third party, stripping metadata is a quick win.

Using FileShot's Metadata Scrubber: Upload your PDF to the , the tool removes all metadata automatically, and download the cleaned PDF.

Adobe Acrobat: Access File — Properties — Remove metadata option, or use the more comprehensive "Sanitize Document" feature which removes multiple categories of hidden data in a single operation.

How to Clear Metadata from Files

"Clearing" metadata means stripping all embedded data fields from a file in a single operation, returning it to a clean state with no hidden information. The fastest way to clear metadata from any file type is FileShot's — upload your file, download the cleaned version. For photos, Windows Explorer's "Remove Properties and Personal Information" option clears photo metadata in a few clicks. For Office documents, the Document Inspector (File → Info → Check for Issues) clears metadata fields including author name, revision history, and company details.

The key distinction: some tools mask metadata from casual viewers while leaving the underlying data intact in the file structure. True metadata clearing actually removes the fields entirely so nothing is recoverable from the exported file.

How to Scrub Metadata

Scrubbing metadata is the thorough version of removal — it targets every metadata field, not just the obvious ones. A basic photo export may remove GPS coordinates while leaving device model, editing software history, and color profile data intact. A full metadata scrub removes all of it. FileShot's handles multi-format scrubbing automatically: upload your file, the tool parses and strips all known metadata fields, and you download a clean copy. For command-line users, ExifTool's exiftool -all= filename command scrubs all metadata from virtually any file format in seconds.

How to Erase Metadata Before Sharing

Erasing metadata permanently removes identifying information before the file leaves your control. The process is simple: (1) use the to erase all fields from your file, (2) verify by re-examining the file's properties after cleaning to confirm the fields are gone, (3) share only the clean copy. Keep your originals in a private folder for your own records — erase metadata only on the version you're sharing out. This approach ensures you always have the original with full metadata for your own archives while sharing privacy-safe copies externally.

How to Delete Metadata from Files on Any Platform

Deleting metadata is especially important before sharing files publicly — on social media, in email, or through file-sharing services. Here are quick methods to delete metadata across different platforms:

  • Windows: Right-click the file → Properties → Details tab → "Remove Properties and Personal Information" → select all and confirm
  • macOS: Use Preview's Tools → Show Inspector for images; for documents, export as PDF and configure to exclude metadata in the export dialog
  • Online (any platform): Upload to FileShot's → download the clean copy — works from any browser on any device
  • Command line: ExifTool: exiftool -all= yourfile.jpg deletes all metadata from a single file
  • Batch delete: ExifTool: exiftool -all= -r ./your-folder/ processes and cleans an entire directory recursively

Best Practices

When removing metadata:

Make metadata removal part of your standard workflow: scrub before sharing, keep originals for your own archives, prefer automated tools (manual steps are easy to miss), and verify the result by re-checking metadata after you export or download the cleaned file.

What Metadata Should You Keep?

Not all metadata needs to be removed:

Not all metadata is bad. For personal archives, EXIF can be useful for organization and memories. For professional work, fields like copyright may matter. The rule of thumb is simple: for public sharing, remove everything you don't explicitly want to publish; for team collaboration, remove personal metadata but keep project-relevant context if it actually helps the workflow.

The key is understanding what metadata exists and removing what you don't want to share.

Common Mistakes

Avoid these mistakes:

The most common failures are forgetting to scrub at all, removing only location while leaving other identifying fields behind, assuming a platform will strip metadata for you, and not verifying the final output. Always treat metadata removal like a build step: do it intentionally, then confirm it worked.

Tools for Metadata Removal

Here are tools I recommend:

If you want the simplest path, use FileShot's Metadata Scrubber (free, web-based, supports multiple file types). Advanced users often prefer ExifTool for deep control via command line. Both Windows and macOS have built-in options for basic cases, and many image editors can export copies without EXIF.

Conclusion

Removing metadata is an important step in protecting your privacy when sharing files. It's quick, easy, and should be part of your file sharing workflow.

The best approach is to use automated tools that remove all metadata at once, rather than trying to remove it manually. FileShot's makes this process simple and secure.

Remember: metadata removal is just one part of file security. Combine it with encryption, password protection, and secure sharing practices for complete protection.