views:

349

answers:

4

We create thumb images on our server and I'm looking for a way to save metadata (text) in that image. Is that possible?

At this moment we use PHP and we create JPG images.

+1  A: 

EXIF or reuse an old "data-hiding" concept, Stenography

Aaron Arbery
+3  A: 

Depends on the format. JPEG has EXIF, XMP, and IPTC. Here's a nice page on the topic.

sblundy
A: 

Embedding XMP Metadata in Application Files (PDF)

Novaktually
+1  A: 

Yes, it's possible.

You can use the almighty Exiftool perl utility, which handles nearly every known set of tags, both standard(EXIF, IPTC, Adobe's XMP, etc) and proprietary ones.

Camilo Díaz