Declaration
property Lossless: Boolean;
Description
Setting this parameter to
True enables mathematically lossless compression mode and overrides the
ImageQuality parameter setting.
Default: False
Note: You must set this property before each
PutFrame call.
Example
wic := TIEWICWriter.Create();
wic.Open('D:\output.wdp', ioHDP);
wic.Lossless := True;
wic.PutFrame(ImageEnView1.IEBitmap);
wic.Free();