Class DeflateCompressionSettings

Class DeflateCompressionSettings

Namespace: Aspose.Zip.Saving
Assembly: Aspose.Zip.dll (25.1.0)

Sıkıştırıcı veya açıcı için gerekli ayarlar.

public class DeflateCompressionSettings : CompressionSettings

Miras

objectCompressionSettingsDeflateCompressionSettings

Miras Alınan Üyeler

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()

Açıklamalar

Deflate, LZ77 algoritması ve Huffman kodlamasının bir kombinasyonunu kullanan kayıpsız veri sıkıştırma algoritmasıdır.

Standart için buraya bakın: https://tools.ietf.org/html/rfc1951

Yapıcılar

DeflateCompressionSettings()

Aspose.Zip.Saving.DeflateCompressionSettings sınıfının yeni bir örneğini başlatır.

public DeflateCompressionSettings()

Örnekler

using (Archive archive = new Archive(new ArchiveEntrySettings(new DeflateCompressionSettings())))
{
    archive.CreateEntry("data.bin", "data.bin");                   
    archive.Save(zipFile);
}
 Türkçe