使用iTextSharp从byte[]生成pdf

本文关键字:生成 pdf byte iTextSharp 使用 | 更新日期: 2023-09-27 18:30:03

我正在尝试创建一个新的pdf文件,并使用iTextSharp将其保存到磁盘。

我有字节[]用于pdf内容,但无法理解如何将其与iTextSharp一起使用。

public bool CreatePdf(string filepath, byte[] content)
{
}

有人能帮我用一些示例代码在iTextSharp中使用byte[]生成pdf并将其保存到磁盘上吗。

我在谷歌上找到了很多添加新段落或大块的教程。。但我想使用byte[]。

使用iTextSharp从byte[]生成pdf

public bool CreatePdf(string filepath, byte[] content)
{
  PdfReader reader = new PdfReader(new MemoryStream(content));
  PdfStamper stamper = new PdfStamper(reader, new FileStream(filepath, FileMode.Create));
}