CompressionLevel enum
The uniform image compression scale for lossy formats.
public enum CompressionLevel
{
Low,
Normal,
High,
ExtraHigh
}
Constants
Name | Description |
---|---|
Low |
The lowest compression rate, that still might have any noticeable effect on recognition of small text. This is the default value. |
Normal | Balanced trade-off between compression and quality. Good safety margin. |
High | More compression, less safety margin. Might perform poorly with small text, but generally still ok. |
ExtraHigh | The maximum recommended compression rate. Will perform poorly with small text. Advisable only for relatively large text and very slow networks. |
3/2/2022 12:59:15 PM