To minimize the file size of the compressed file, set the compression level on the C1ZStreamWriter's constructor by using the following code:
Dim fn As String = Path.GetTempFileName()
Dim fs As New FileStream(fn, FileMode.Create)
Dim compressor As New C1ZStreamWriter(fs, CompressionLevelEnum.BestCompression)
•C#
string fn = Path.GetTempFileName();
FileStream fs = new FileStream(fn, FileMode.Create);
C1ZStreamWriter compressor = new C1ZStreamWriter(fs,
CompressionLevelEnum.BestCompression);
Note that the code sample above sets the compression level to BestCompression, which has the highest compression time and the lowest speed. Other compression level options on the C1ZStreamWriter's constructor include the following:
• BestSpeed has low compression time and the highest speed.
• DefaultCompression has normal compression time and speed.
• NoCompression has no compression.