我正在使用库FlexCel,需要将MemoryStream
(XLS类型)转换为PDF。我尝试过这种形式,但是没有用。
oFlexCelReport.Run(oTemplateMemoryStream, oOutMemoryStream);
oOutMemoryStream.Seek(0, SeekOrigin.Begin);
using (FlexCelPdfExport pdf = new FlexCelPdfExport(oXlsFile, true))
{
pdf.Export(oOutMemoryStream);
}