I found that there is a render problem when converting Excel to Image when there is some bold words in a sentence when the font size is big.
- Code: Select all
Workbook workbook = new Workbook();
workbook.LoadFromFile(tmpfullpath);
List<System.Drawing.Image> lstImages = workbook.SaveAsImage(250, 250).ToList();
foreach (var img in lstImages)
{
img.Save(Path.GetDirectoryName(textBox4.Text) + Path.DirectorySeparatorChar + "t"+ ++count +".png");
}
I have tested with latest version 14.1 yet it's still rendering same result. I am providing the sample excel file and result image for your reference. Thank you for helping.