Does Aspose.Slides for .NET Deal with Zip64 Like Aspose.Words for .NET?

Hi,

In .net, how can we control zip64mode with slides like:

Thanks.

@kngstr,
Thank you for posting the question. Unfortunately, I haven’t found such a feature in Aspose.Slides.

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): SLIDESNET-44443

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

The issues you found earlier (filed as SLIDESNET-44443) have been fixed in Aspose.Slides for .NET 24.4 (ZIP, MSI, NuGet, Cross-platform).
You can check all fixes on the Release Notes page.
You can also find the latest version of our library on the Product Download page.

@kngstr,
The IPptxOptions.Zip64Mode property has been added to Aspose.Slides for .NET 24.4. You can use the Zip64 mode as follows:

using var presentation = new Presentation("demo.pptx");

var pptxOptions = new PptxOptions
{
    Zip64Mode = Zip64Mode.Always
};

presentation.Save("demo-zip64.pptx", SaveFormat.Pptx, pptxOptions);

@andrey.potapov

OK. Thanks.

@kngstr,
Thank you for using Aspose.Slides.