Class XzBcjX86FilterSettings

Class XzBcjX86FilterSettings

Namespace: Aspose.Zip.Xz.Settings
Assembly: Aspose.Zip.dll (25.1.0)

Inställningar för xz Bcj X86-filter.

public sealed class XzBcjX86FilterSettings : XzFilterSettings

Arv

objectXzFilterSettingsXzBcjX86FilterSettings

Arvade Medlemmar

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Konstruktörer

XzBcjX86FilterSettings()

Initierar en ny instans av Aspose.Zip.Xz.Settings.XzBcjX86FilterSettings. Använd den för att komprimera körbara filer och bibliotek inom Aspose.Zip.Xz.XzArchive.

public XzBcjX86FilterSettings()

Exempel

XzLZMA2FilterSettings lzma2 = new XzLZMA2FilterSettings(5242880);
XzBcjX86FilterSettings bcj = new XzBcjX86FilterSettings();
XzArchiveSettings settings = new XzArchiveSettings(new XzFilterSettings[] {bcj,lzma2}, 10485760, XzCheckType.Crc32);
using (XzArchive archive = new XzArchive(settings))
{
    archive.SetSource("data.bin");
    archive.Save("archive.xz");
}
 Svenska