exif - How to manipulate diverse meta-infomations of image files in PHP -
there diverse formats add meta-information image (and video) files. every digitalcamera add them fotos. , people don't want them published.
the standards found far are:
- exif
- iptc-naa
- xmp
are there more? (e.g. not image specific, general meta standard, can attached end of every file)
reading information saved, using php seems possible 3 named formats.
for xmp: how can read xmp data jpg php?
for exif php provides functions: http://de2.php.net/manual/de/function.exif-read-data.php (but jpeg , tiff, or can exif data attached image formats?)
also iptc: http://de2.php.net/manual/de/function.iptcparse.php
but how can data manipulated (changed, added)
how can delete possible meta-data using php? (i.e. infomation not belong image itself)
open , save image gd. should remove meta data because gd lib cannot handle it.
if doesn't cut it, try of
Comments
Post a Comment