Class LzmaCompressionSettings

Class LzmaCompressionSettings

Pôvodný názov: Aspose.Zip.Saving Zhromaždenie: Aspose.Zip.dll (25.5.0)

Nastavenia potrebné pre kompresor alebo dekompresor pracovať.

public class LzmaCompressionSettings : CompressionSettings

Inheritance

object CompressionSettings LzmaCompressionSettings

Z dedičných členov

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

Lempel-Ziv-Markov Chain Algorithm (LZMA) je algoritmus používaný na vykonávanie bezproblémovej kompresie údajov.Tento algorithmus používa slovný režim kompresií, ktorý je trochu podobný algoritmu LZ77, a má vysoký pomer kompozície a variabilnú veľkosť komprimovania a slovného rozmeru.

Pozri viac: https://en.wikipedia.org/wiki/Lempel –Ziv–Markov_chain_algorithm

Constructors

LzmaCompressionSettings()

Initalizuje novú inštanciu triedy Aspose.Zip.Saving.LzmaCompressionSettings s predvolenou veľkosťou slovníka, ktorá sa rovná 16 megabytom.

public LzmaCompressionSettings()

Examples

using (Archive archive = new Archive(new ArchiveEntrySettings(new LzmaCompressionSettings())))
{
    archive.CreateEntry("data.bin", "data.bin");
    archive.Save(zipFile);
}
 Slovenčina