I have an Excel template that I use to create PDF specification sheets for our vendors. I can open, manipulate and export to a PDF file fine except when I insert a picture. This is the code I am using to add one picture
workSheet.Shapes.AddPicture(imagePath, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, 120, 700, image.Width, image.Height);
and this is the code to save the PDF file:
private void createPDF()
{
if (File.Exists(path + basePart.Number + ".pdf"))
File.Delete(path + basePart.Number + ".pdf");
workBook.Saved = true;
workSheet.ExportAsFixedFormat(Excel.XlFixedFormatType.xlTypePDF, path + basePart.Number, Excel.XlFixedFormatQuality.xlQualityStandard, true,
false, Type.Missing, Type.Missing, true, Type.Missing);
DisposeExcelInstance();
}
Without any images the PDF file saves fine. With images, the PDF file saves but cannot be opened. I have tried multiple PDF file readers just in case but sure enough none of them work.
EDIT:
I have tried various Excel formats and none have worked. It seems that ExportAsFixedFormat does not work with images, no matter how they get inserted into the document. Is there an alternative to this?