MemoryStream(Xls)转换为PDF

时间:2018-11-28 16:30:00

标签: c# asp.net .net memorystream flexcel

我正在使用库FlexCel,需要将MemoryStream(XLS类型)转换为PDF。我尝试过这种形式,但是没有用。

oFlexCelReport.Run(oTemplateMemoryStream, oOutMemoryStream);
oOutMemoryStream.Seek(0, SeekOrigin.Begin);
using (FlexCelPdfExport pdf = new FlexCelPdfExport(oXlsFile, true))
{
    pdf.Export(oOutMemoryStream);
}

0 个答案:

没有答案