Hi,
When converting a chart to an image, I noticed several elements in the chart looked differently in the images.
Code:
var workbook2 = new Workbook(@“test.xlsx”);
var options = new ImageOrPrintOptions
{
ImageType = ImageType.Emf,
ChartImageType = ImageFormat.Emf,
OnlyArea = false,
TextRenderingHint = TextRenderingHint.ClearTypeGridFit,
OnePagePerSheet = true
};
workbook2.Worksheets[0].Charts[0].ToImage(@"out.emf", options);
I can see some line thickness and position accuracy issue (marked in my screenshot).
image.png (237.5 KB)
out.zip (32.2 KB)
I’ve attached the test files for your reference. Could you please help me check?
Thanks