Hi,
When I try to convert this file
LargeTable.zip (3.6 MB)
Conversion runs into a System.OutOfMemoryException
.
I know the file is not exactly the typical xlsx, but GroupDocs.Conversion consuming 3 GB of memory before crashing with a memory exception is also not great.
I was using GroupDocs.Conversion 20.4 for .Net with the following code:
using (var conv = new GroupDocs.Conversion.Converter("LargeTable.xlsx"))
{
conv.Convert("Output.pdf", new PdfConvertOptions());
}
I also tried splitting the xlsx up into pages using the following code:
var options = new GroupDocs.Conversion.Options.Load.SpreadsheetLoadOptions();
options.OnePagePerSheet = false;
using (var conv = new GroupDocs.Conversion.Converter("\LargeTable.xlsx", ()=> options))
{
conv.Convert("Output.pdf", new PdfConvertOptions());
}
This consumed way less memory ~300 MB, but ultimately also failed.
The error was different though:
An unhandled exception of type 'GroupDocs.Conversion.Exceptions.GroupDocsConversionException' occurred in GroupDocs.Conversion.dll