tags:

views:

51

answers:

2

Possible Duplicate:
How do I add exif data to an image?

I want to modify some information in exif data with PHP. I've googled around but no hope. There's function in PHP, exif_read_data. But it only reads not writes. Anybody knows how or walkaround?

+2  A: 

Looks fairly old but may be something for you: http://pel.sourceforge.net/

This gets also mentioned in the linked article from Calvin L.

DrColossos
+1  A: 

http://pel.sourceforge.net/

A php extension that can write exif data, with installation instructions using PEAR. It requires that you can control which extensions are being installed on the machine that runs your PHP, which is not the case in many virtual hosting environments.

Isotopp