Hi !!!
Anyone know how to write embedded information for a jpg img so that it shows up in photoshops' File...File Info... command?
I can extract info allright by using the following code:
<?php
$size = GetImageSize ("cindy.jpg",&$info);
if (isset ($info["APP13"])) {
$iptc = iptcparse ($info["APP13"]);
var_dump ($iptc);
}
?>
What I want is the reverse. i.e. manupulating the above info so that anybody can dowload my file and look up for info in photoshop.
Thnx in advance