Quantcast
Channel: Aspose.Pdf Product Family
Viewing all articles
Browse latest Browse all 3131

image in PDF missing from excel output

$
0
0
I am trying to convert a .png to pdf object and then the pdf to excel which is then exported using the following code. The .png to pdf works (I even tested exporting that file) however when saving the pdf doc obejct to excel the image from the .png is not displayed in the excel file output. 

Any ideas? 

 MemoryStream ms = new MemoryStream();
            finalOutputDoc.Save(ms, Aspose.Pdf.SaveFormat.Excel);
            Aspose.Cells.Workbook wb = new Workbook(ms);
            wb.Save("mergedoutput.xlsx", FileFormatType.Xlsx, Aspose.Cells.SaveType.OpenInExcel, this.Response);

Viewing all articles
Browse latest Browse all 3131

Trending Articles