|
Hey,
since more than a week I have several Problems with the roll out of CS3. I'm using exiftool to write specific information into our images. The base problem is, that the Keywords field is not shown within the "subject" field in CS3. Otherimages are showing the keywords information but others don't.
I'm using php to write the iptc information into the specific fields:
$cmd = APP_EXIFTOOL;
switch($key){
case 'Keywords':
if(is_array($value as $val){
$cmd .=' -IPTC:' . utf8_encode($key) . '+="' . utf8_encode($val) .'"';
}
}
break
case ....
Due to an older database I added utf8_encode.
I also checked the images wether there are existing xmp information that might conflict with iptc in CS3. XMP was shown, but even removing( -XMP:all= ) all these didn't show my IPTC information.
If someone is interessted in a testing image I might mail one.
-cheers
b3nton
|