And here is my code:
- Code: Select all
Workbook workbook = new Workbook();
workbook.LoadFromFile(tmpfullpath);
List<System.Drawing.Image> lstImages = workbook.SaveAsImage(250, 250).ToList();
int count = 0;
foreach (var img in lstImages)
{
img.Save(Path.GetDirectoryName(textBox4.Text) + Path.DirectorySeparatorChar + "t"+ ++count +".png");
}
Is there any solution to cater for this like replacing the wordart or any other conversion method?