Declaration
property Quality: Integer;
Description
This parameter controls the compression quality for the main image. A value of 1 sets lossless mode.
Increasing values result in higher compression ratios and lower image quality.
Default: 1
Note:
◼UseCodecOptions must be
True
◼You must set this property before each
PutFrame call
Example
wic := TIEWICWriter.Create();
wic.Open('D:\output.wdp', ioHDP);
wic.UseCodecOptions := True;
wic.Quality := 10;
wic.PutFrame(ImageEnView1.IEBitmap);
wic.Free();