up vote 1 down vote favorite
share [g+] share [fb]

I have a PHP script running that lists files in a certain directory on the server. Is there any way to access the file's icon metadata? Lots of issues with this I suppose (eg: depends on the OS hosting the script. depends on whether the file is using a custom icon. still have to convert the icn file to something that can be displayed in a browser) but any suggestions are welcome. I guess I could display a different icon depending on the file extension, but it would be nice to do it automatically.

link|improve this question

What's "file's icon"? – Milen A. Radev Jun 11 '09 at 21:31
By a "file's icon", i mean the little picture that appears in the file manager. The trouble is this is either 1) a custom icon stored as part of the file's metadata, or 2) a proxy image used by the file manager to represent all files of the file's type. Eg: ico, icns, etc. – username Jun 14 '11 at 1:36
feedback

3 Answers

You might be able to plug into the /icons folder that most apache installations have setup for their default directory listings.

It's not OS dependent at least.

You should be able to craft a url that displays an icon for a particular extension.

link|improve this answer
feedback

GDLib or ImageMagic possibly is that what you are looking for... But if you want to access metadata GDLib won't help. Not sure about ImageMagic.

Actually, you can create thumbnails with their help and cache them somewhere to avoid performance issues.

link|improve this answer
feedback

If you want to extract IPTC information from file you can use getimagesize function fith extra parameter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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