Enum CompressionLevel
The compression level to be used for compression of data.
Namespace: Telerik.Windows.Zip
Assembly: Telerik.Windows.Zip.dll
Syntax
public enum CompressionLevel
Best
The best compression, where best means greatest reduction in size of the input data. This is also the slowest compression.
Fastest
The fastest but least effective compression.
Level0
Same as NoCompression.
Level1
A synonym for Fastest.
Level2
A little slower, but better, than level 1.
Level3
A little slower, but better, than level 2.
Level4
A little slower, but better, than level 3.
Level5
A little slower than level 4, but with better compression.
Level6
A synonym for Optimal.
Level7
Pretty good compression.
Level8
Better compression than Level7.
Level9
A synonym for Best compression level.
NoCompression
The data will be simply stored, no compression should be performed.
Optimal
The default compression level with a good balance of speed and compression efficiency.