ImageEn, unit iewic

TIEWICWriter.ImageQuality

TIEWICWriter.ImageQuality


Declaration

property ImageQuality: double;


Description

0.0 specifies the lowest possible quality and 1.0 specifies the highest quality, which for HD Photo results in mathematically lossless compression.
You must set this property before each PutFrame call.


Example

with TIEWICWriter.Create do
begin
  Open('D:\output.wdp', ioHDP);
  ImageQuality := 0.7;
  PutFrame(ImageEnView1.IEBitmap);
  Free;
end;