Declaration
function IsAvailable(): Boolean;
Description
Returns True if WIC is available.
This should always be True on Windows Vista or newer (or Windows XP SP2 with .NET 3.0).
Example
wic := TIEWICReader.Create();
if wic.IsAvailable() then
begin
wic.Open( 'C:\input.wdp' );
wic.GetFrame(0, ImageEnView1.IEBitmap, ImageEnView1.IO.Params);
wic.Free();
ImageEnView1.Update();
end;
See Also
◼IEWICAvailable