Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
User Journal

Journal toby's Journal: manipulating EXIF 1

Download and build the exiftags software.

Fix error in image timestamps due to wrong time zone setting on camera (in this case, +16 hours):

find IMAGE-DIR -name \*.jpg -print0 |xargs -0 ./exiftime -v+16H -w -f

Add copyright notice:

find IMAGE-DIR -name \*.jpg -print0 |xargs -0 ./exifcom -w "Copyright (C) 2005 Toby Thain - All rights reserved"

(Substituting correct directory path in each case.)

This discussion has been archived. No new comments can be posted.

manipulating EXIF

Comments Filter:

I'm always looking for a new idea that will be more productive than its cost. -- David Rockefeller

Working...