9

I am using Coldfusion to view images stored in the file system and I can READ the EXIF metadata of JPEGs, but I'd like to know if it is possible to modify this information and re-save the image.

Peter Boughton
  • 110,170
  • 32
  • 120
  • 176
Tom
  • 95
  • 4

1 Answers1

2

I know that there are XMP and IPTC custom tags out there, I googled now and seems that javaloader.cfc + some java lib are your only sure option.

EDIT: Since I work on stock photography application I got interested and found this command line tool which could do the trick:

http://www.sno.phy.queensu.ca/~phil/exiftool/

zarko.susnjar
  • 2,053
  • 2
  • 17
  • 35
  • 1
    Yes, by clicking on the page you see "ExifTool is a platform-independent Perl library plus a command-line application for reading and editing meta information...". I added it to my answer because it's "command-line application", and you can call it from ColdFusion or Java if you need. – zarko.susnjar Dec 06 '12 at 15:10