I have an excel file stored in database.I am trying to export this file into pdf by using Aspose.Cell.
The pdf file which has been generated is not showing all the fields that exists in excel file.
byte[] data = GetInvoiceImageStream(invoiceId);
var fileName = codaOfficeCode.Trim() + "_" +
EfinanceStaticData.ManageAttachmentInvoiceCode + "_" +
invoiceNumber.Trim();
MemoryStream ms = new MemoryStream();
ms.Write(data, 0, data.Length);
ms.Position = 0;
Workbook workbook = new Workbook(ms);
workbook.Save("C:/xyz.pdf", SaveFormat.Pdf);