Hi,
When rendering a simple chart using Aspose.Cells, the process took all the memory and eventually threw an OOO exception.
Code:
var workbook = new Workbook(@“test.xlsx”);
var options = new ImageOrPrintOptions
{
ImageType = ImageType.Emf,
ChartImageType = ImageFormat.Emf,
OnlyArea = false,
TextRenderingHint = TextRenderingHint.ClearTypeGridFit,
OnePagePerSheet = true
};
workbook.Worksheets[0].Charts[0].ToImage(@"out.emf", options);
I’ve attached the test file for your reference. Could you please help me look into this?
test.zip (24.0 KB)
Thanks