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

Comments on Program to strip EXIF data from images

Parent

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

Post
+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)
General comments
Olin Lathrop‭ wrote over 3 years ago

I don't understand the downvote. If something is wrong, misleading, or you think what I said doesn't address the question, please explain. I can't fix what I don't know is broken.

Trilarion‭ wrote over 2 years ago

I didn't do the downvote but I can imagine it's just that somebody thinks that the other solution is better suited. I would probably also use exiftools because it seems more specialized, so not much can go wrong. But I haven't tried your software and because it's open source, many, many thanks for it. The more choice, the better.