ImageEn, unit iexBitmaps

TIEReadImageStream


Declaration

TIEReadImageStream = procedure(Stream: TStream; Bitmap: TIEBitmap; var IOParams: TIOParams; var Progress: TProgressRec; ParamsOnly: boolean);


Description

The procedure to load the image in Stream into Bitmap and fill IOParams with metadata.

Use Progress to return progress information (e.g. for 35% progress Progress.val := 35 and Progress.tot := 100) and notify of load failure (Progress.Aborting^ := True).
When ParamsOnly is true, ImageEn is only seeking to fill IOParams, not load the image (i.e. you can skip Bitmap as it will be ignored.
You will need to reset the stream position.