I have a .xls file (attached) created in Excel 2003 that has a worksheet with a Picture in column 3 of the custom header. Using the code below the picture is lost in saved file (use print preview to observe the presence of the image in the before file and the absence in the after file)
Aspose.Cells.License lic = new License(); lic.SetLicense("Aspose.Cells.lic");
Workbook workbook = new Workbook(); workbook.Open(@"C:\before.xls"); workbook.Save(@"C:\after.xls");