Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Gear Recommendations

Program to strip EXIF data from images

+4
−0

I record the GPS locations of my pictures but for privacy and other reasons I would like to strip the EXIF data before I upload them online.

Looking for a program that,

  • Will process multiple images at once.
  • Free.
  • Must work on Windows and would be nice if it worked on Linux too.
History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

2 answers

+6
−0

exiftool

It's available as a standalone application for Windows, and in package distributions for Linux. You can remove all EXIF data from a JPEG with

exiftool -all= path/to/file.jpg

or you can be more fine-grained in the tags you choose to remove.

The option -ext jpg will cause it to process all .jpg files in the current directory, and you can combine that with -r for recursive processing.

(It also has some clever features around replacing tags with values taken from a config file, which I use for setting lens information on photos taken with my non-electronic lenses).

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+2
−1

Instead of "stripping" EXIF data, think of it as making a copy that doesn't include it.

My various image manipulation programs do that by default when writing JPG output files. This may have changed, but it used to be that JPG files didn't have provisions for meta-data, and I haven't updated the JPG writing software for a long time.

The image files that come directly from a camera are usually TIFF or some proprietary variant of that. Those can have many different types of meta-data, in addition to arbitrary comments. Since you're going to post-process these files anyway to create the final pictures you show others, just make sure to export those with no meta-data. You also often want to shrink the resolution from the raw camera images.

My image_copy, image_resize, image_filter programs and others can be used to create JPG copies with no meta-data. Since they are command line programs, they can be easily run from scripts.

Go to http://www.embedinc.com/pic/dload.htm and install the Full Runtime release. All my image manipulation programs are included in that release. Follow the cookie crumbs on that page to find the documentation, and directions on how to get the source code and re-build them if you're so inclined. All the source is open and available on GitHub.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

General comments (2 comments)

Sign up to answer this question »