如何在內存流中創建PDF而不是使用itextsharp創建物理文件。 以下代碼正在創建實際的pdf文件。 相反,我怎麼可以創建一個byte [],並將其存儲在一個字節[],這樣我可以通過函數 using iTextSharp.text;
using iTextSharp.text.pdf;
Document doc = new Document(iTextSharp.text.PageSize
我使用iTextSharp的5.1.1提取所有文字數中的所有單詞,下面的代碼 public static string GetTextFromAllPages(String pdfPath)
{
PdfReader reader = new PdfReader(pdfPath);
StringWriter output = new StringWriter();
f