Declaration
property WIC_CodecInfo: TIEWicCodecInfo;
Description
Returns information about the codec used to load the current image (when using WIC or
WebP).
// Display the codec used to load a DDS image
ImageEnView1.IO.LoadFromFile( 'D:\Test.dds' );
with ImageEnView1.IO.Params do
lblInfo.Caption := WIC_CodecInfo.Name + ' v' + WIC_CodecInfo.Version + ' (' + WIC_CodecInfo.Author + ')';