I want to fetch the metadata of a PSD file in PHP with ImageMagick.

I only know how to do this for JPEG or other images types (exif, iptc and so on) but don't know how to read the metadata of a PSD file.

So if you set a comment / copyright in Photoshop and save the PSD, when reading the PSD, the PHP script should be able to read this comment and also some other meta data.

Opening PSD files is already done, so I just want to read these additional metadata.

I use PHP on a managed server with ImageMagick support.

link|improve this question

Also see the related question in the sidebar. – Gordon Jul 24 '11 at 12:25
Which one? I already use Imagemagick for opening the psd files successfully. So i need just the part with the metadata fetching from the psd. – Daniel Ruf Jul 24 '11 at 12:52
1  
it's only 25 related links. Is it too much to go through that list without being pointed to a particular one? – Gordon Jul 24 '11 at 13:03
none in particular. I just noticed there is links to PSD readers and SDKs in those, so I figured you might find those useful. Was really just trying to give you puzzle pieces because I doubt someone will post the solution. – Gordon Jul 24 '11 at 13:19
the sdks are not for php and the psd readers are not that what i want. i want just an easy solution to read the meta data. i have already done all the functions for opening and processing psd files in php with imagemagick. no, the other questions and their answers didnt help me. – Daniel Ruf Jul 24 '11 at 13:37
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

I saw that you can extract XMP using:

identify -verbose file

As far as I know PSD is making use of XMP. Additionally there are additional PHP libraries like xmpphptoolkit to deal with metadata specifically.

link|improve this answer
I need it for PHP, I cant use the command line of imagemagick directly on the server. and that toolkit seems a bit to big for this task and dont know if this works the way i want (seems very old and alpha, doenst support psd?) – Daniel Ruf Jul 24 '11 at 12:53
1  
@Daniel: Seems and the like: If you don't want to, then let it be. But please then don't ask. – hakre Jul 24 '11 at 12:55
im currently downloading and then testing this one, but it seems its an php extension i would have to install on the server, but that would not work as i have a managed server and identify doesnt show data like the comment (meta data) and so on – Daniel Ruf Jul 24 '11 at 13:43
its only for root servers and written in c / c++ so i cant use this one – Daniel Ruf Jul 26 '11 at 7:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.