Hi
i am getting this exception on converting the pdf document to word
The number of entries is 65535 or greater. Consider setting the UseZip64WhenSaving property on the ZipFile instance
i am using the version 23.05 of Aspose.pdf
and this is the code being used for conversion
var saveOptions = new DocSaveOptions();
saveOptions.Format = DocSaveOptions.DocFormat.DocX;
var streamResult = new MemoryStream();
// Load the PDF document into memory
using (var document = new Document(streamSource))
{
// Convert the document to a different format and save to stream
document.Save(streamResult, saveOptions);
}
i am also attaching the document that is having exception on conversion
EntravisionCommunicationsCorp_20230508_ARS.pdf (8.9 MB)
thanks