ImageEn, unit iewic

TIEWICReader.Close

TIEWICReader.Close

Declaration

procedure Close();

Description

Closes currently open stream or file freeing allocated resources.
This method is implicitly called by Free method.

Example

wic := TIEWICReader.Create();
wic.Open( 'C:\input.wdp' );
wic.GetFrame(0, ImageEnView1.IEBitmap, ImageEnView1.IO.Params);
wic.Free(); // Calls Close() implicitly
ImageEnView1.Update();