Welcome to Camera Bits Forums
$caption = $iptc["2#120"][0]; $city = $iptc["2#090"][0]; $transmission_ref = $iptc["2#103"][0]; $location = $iptc["2#092"][0]; $country = $iptc["2#101"][0]; $special_instructions = $iptc["2#040"][0]; $img_width = $exif["COMPUTED"]["Width"]; $img_height = $exif["COMPUTED"]["Height"];
Hi, I am using Photomecanic V5 on MacOS mountain Lion. Currently, I pull out the IPTC metadata (shown in the PHP code snippet) of every jpeg that I upload to my server. The numbers after the 2# corrispond to the numbers in the IPTC specification found here: [url=http://www.iptc.org/std/photometadata/documentation/IPTC-CS5-FileInfo-UserGuide_6.pdf]http://www.iptc.org/std/photometadata/documentation/IPTC-CS5-FileInfo-UserGuide_6.pdf][url]http://www.iptc.org/std/photometadata/documentation/IPTC-CS5-FileInfo-UserGuide_6.pdf]http://www.iptc.org/std/photometadata/documentation/IPTC-CS5-FileInfo-UserGuide_6.pdf]http://www.iptc.org/std/photometadata/documentation/IPTC-CS5-FileInfo-UserGuide_6.pdf][url]http://www.iptc.org/std/photometadata/documentation/IPTC-CS5-FileInfo-UserGuide_6.pdf[/url]I was wondering if Photomechanic actually stores the "star rating" in an IPTC or Exif feild and if so. How I would access it. I am currently accessing the other fields using PHP as below: Code: [Select] $caption = $iptc["2#120"][0]; $city = $iptc["2#090"][0]; $transmission_ref = $iptc["2#103"][0]; $location = $iptc["2#092"][0]; $country = $iptc["2#101"][0]; $special_instructions = $iptc["2#040"][0]; $img_width = $exif["COMPUTED"]["Width"]; $img_height = $exif["COMPUTED"]["Height"];Please let me know if there is a way to reference the star rating that I set in PM in the same way as I access the other IPTC/EXIF feilds.