vote up 0 vote down star

I have php script that creates a temporary watermark image for users that are not logged in. The original image contains IPTC (metadata) information that I would like to retain, however, when the watermark is applied and imagejpeg is called, all metadata is removed.

Any ideas how I can maintain the metadata or re-apply metadata after imagejpeg gets called?

Thanks

flag

1 Answer

vote up 1 vote down

This is just what the iptcparse and iptcembed functions are for.

link|flag
I've tried them, but apparently not correctly... – bhays Sep 7 at 3:07
What happens if you var_dump() the results of iptcparse(), as in the example on the PHP.net example? – cpharmston Sep 7 at 3:12
I just found that my temporary image file wasn't being saved properly thanks to a typo. So the IPTC information was attempting to be written to a file with size 0. Fixed and working fine now, thanks! – bhays Sep 7 at 3:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.