views:

177

answers:

2

How can I get the summary information for file images in Delphi?

+4  A: 

You will have to use parsers for each file type. The simple solution would be to use something like GraphicEx and to load each supported image into a temporary object, extract the information you want then dispose of it.

For EXIF information (the information attached by modern day cameras) you might want to use a different component. I know there are a few components floating around that will give you access to this special format, however this data is not supported by all image types and is normally seen in JPEG files.

skamradt
+1  A: 

You don't need anything.

It's included in Windows (Win32 COM)

See on Win32 api group (classic question...)