TIEWICWriter.UseCodecOptions
Declaration
property UseCodecOptions: boolean;
Description
If this parameter is
true, the
Quality,
Overlap and
Subsampling parameters are used in place of the
ImageQuality encoder canonical parameter.
When
false, the
Quality,
Overlap and
Subsampling parameters are set based on a table lookup determined by the
ImageQuality parameter.
Default: False
Note: You must set this property before each
PutFrame call.
with TIEWICWriter.Create do
begin
Open('D:\output.wdp', ioHDP);
UseCodecOptions := true;
Quality := 10;
PutFrame(ImageEnView1.IEBitmap);
Free;
end;