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.
with TIEWICWriter.Create do
begin
Open('D:\output.wdp', ioHDP);
Lossless := true;
PutFrame(ImageEnView1.IEBitmap);
Free;
end;