我想使用pdfsharp将pdf文件中的内容读取到另一个pdf文件

时间:2017-08-02 11:49:26

标签: pdfsharp

我想使用pdfsharp将我的pdf文件的内容读入另一个pdf文件,这是我的代码,我只是想以字节或字符串格式读取内容,但是使用pdfsharp。< / p>

public static void Main()
{
    PdfDocument pdf = PdfReader.Open(@"C:\backup_temp\Template.pdf");
    string outputText= "";

    foreach (PdfPage page in pdf.Pages)
    {
        for (int index = 0; index < page.Contents.Elements.Count; index++)
        {
            PdfDictionary.PdfStream stream = Page.Contents.Elements.GetDictionary(index).Stream;
            outputText += new PDFParser().ExtractTextFromPDFBytes(stream.Value);
         }
     }

     string pdfFilename = @"C:\backup_temp\source.pdf";
     pdf.Save(pdfFilename);
 } 

0 个答案:

没有答案