Reputation: 289
Im a newbie programmer in Delphi. I need help, I have a small project which I need to display all kind of image format.
Please suggest what should I do or any component in delphi that support all image format? thanks for the help in advance.
Upvotes: 4
Views: 3196
Reputation: 289
I found a Library that suites my need. It called vampyre library and works amazing. It support TIFF,tif, animating gif and many more
Upvotes: 3
Reputation: 11040
Both ImageEn and Imaging Toolkit for Delphi offer wide range of supported format
and you can find more in torry site
Upvotes: 1
Reputation: 12898
GraphicEx should be a good start. It's free and contains the most used formats.
Upvotes: 1
Reputation: 47694
Have a look at the GraphicEx library available from www.soft-gems.net. This should give you most (if not all) of the formats you want.
Upvotes: 7
Reputation: 53366
You can use several image types with the standard TImage component. At least bmp and jpg (if you use the Jpeg unit).
Version 2009 added some more. Image formats (I thought at least png and wmf).
There are a lot of third party components for image display/processing. A google search will show them all.
Upvotes: 1