Class DeflateCompressionSettings
İsim alanı : Aspose.Zip.Saving Toplama: Aspose.Zip.dll (25.5.0)
Kompresör veya dekompresör çalışmak için gerekli ayarlar.
public class DeflateCompressionSettings : CompressionSettings
Inheritance
object ← CompressionSettings ← DeflateCompressionSettings
mirasçı üyeleri
CompressionSettings.Bzip2 , CompressionSettings.Deflate , CompressionSettings.EnhancedDeflate , CompressionSettings.Store , CompressionSettings.Lzma , CompressionSettings.Xz , CompressionSettings.PPMd , CompressionSettings.Zstd , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Remarks
Deflate, LZ77 algoritması ve Huffman kodlaması bir kombinasyonu kullanan kayıp olmayan bir veri sıkıştırma algorithmidir.
Standart burada bakın: https://tools.ietf.org/html/rfc1951
Constructors
DeflateCompressionSettings()
Aspose.Zip.Saving.DeflateCompressionSettings sınıfının yeni bir örneğini başlatır.
public DeflateCompressionSettings()
Examples
using (Archive archive = new Archive(new ArchiveEntrySettings(new DeflateCompressionSettings())))
{
archive.CreateEntry("data.bin", "data.bin");
archive.Save(zipFile);
}