Class XzBcjX86FilterSettings
Class XzBcjX86FilterSettings
Namespace: Aspose.Zip.Xz.Settings
Assembly: Aspose.Zip.dll (25.1.0)
xz Bcj X86フィルターの設定。
public sealed class XzBcjX86FilterSettings : XzFilterSettings
継承
object ← XzFilterSettings ← XzBcjX86FilterSettings
継承されたメンバー
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
コンストラクター
XzBcjX86FilterSettings()
Aspose.Zip.Xz.Settings.XzBcjX86FilterSettingsの新しいインスタンスを初期化します。これを使用して、Aspose.Zip.Xz.XzArchive内の実行可能ファイルとライブラリを圧縮します。
public XzBcjX86FilterSettings()
例
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");
}