Hi, I am using Photo Mechanic 5.0 build 13217 on MacOS X 10.7.4
I had always used the IPTC field "Special instructions" for a variety of instructions that are read by a PHP script on my web server once I FTP a new image file into that server.
Since running Photo Mechanic 5 (with all of its new IPTC fields), my PHP script no longer finds what I put in that field.
I am sure that, even though this is PHP, the addressing would be the same for accessing IPTC data in any programming language
It used to find the Special Instructions data at this location in the IPTC block: ["2#040"][0]
But now that location is blank when saving IPTC data in PM5
This is no problems with most of the other fields (I still find them in the same place as they were before)
Here are some examples which work fine
$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];
But nothing is found in $iptc["2#040"][0];
I should point out that reloading the file in PM, the Special Instructions text is still there so it is getting saved somewhere. I just dont know where
I also dumped the whole IPTC array in the script and still did not find the Special Instructions text I had saved
Can you tell me if something has changed in the IPTC data block in photo mechanic 5, specifically with "Special Instructions"?
Is there a new IPTC specification that its using? If so, hopefully the numbers I gave above for the other fields make sense and someone may be able to help.
Thanks
-Tommy