PDFsharp 看不到文档中的页面

use*_*216 1 c# pdfsharp

我之前使用 PDFsharp 进行了一些文件合并,现在我正在尝试更改多个文件(插入或删除一些页面),但我遇到了问题,即库看不到页面。它说 PageCount == 0 并且我在对象中找不到页面(在调试时)。当然,我不能做我现在的工作。我使用这个非常简单的代码:

var destinationPdf = new PdfDocument(destinationFilePath);
Int32 count = destinationPdf.PageCount;
Run Code Online (Sandbox Code Playgroud)

而且,这是我以前用来将文件合并为一个 PDF 的代码:

public class PdfCreator
{
    private PdfDocument document;

    public PdfCreator()
    {
        this.document = new PdfDocument();
    }

    public void AddImage(String imageFilePath)
    {
        PdfPage newPage = this.document.AddPage();
        XGraphics xGraphics = XGraphics.FromPdfPage(newPage);
        XImage image = XImage.FromFile(imageFilePath);
        xGraphics.DrawImage(image, 0, 0);
    }

    public void AddPdfFile(String pdfFilePath)
    {
        PdfDocument inputDocument = PdfReader.Open(pdfFilePath, PdfDocumentOpenMode.Import);
        Int32 count = inputDocument.PageCount;
        for (Int32 currentPage = 0; currentPage < count; currentPage++)
        {
            PdfPage page = inputDocument.Pages[currentPage];
            this.document.AddPage(page);
        }
    }

    public void AddTextFile(String txtFilePath)
    {
        PdfPage newPage = this.document.AddPage();
        XGraphics xGraphics = XGraphics.FromPdfPage(newPage);
        var xFont = new XFont("Times New Roman", 12, XFontStyle.Bold);
        var xTextFormatter = new XTextFormatter(xGraphics);
        var rect = new XRect(30, 30, 540, 740);
        xGraphics.DrawRectangle(XBrushes.Transparent, rect);
        xTextFormatter.Alignment = XParagraphAlignment.Left;
        xTextFormatter.DrawString(File.ReadAllText(txtFilePath), xFont, XBrushes.Black, rect, XStringFormats.TopLeft);
    }

    public void Save(String destinationFilePath)
    {
        if (this.document.Pages.Count > 0)
        {
            this.document.Save(destinationFilePath);
            this.document.Close();
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Je *_*not 5

你的代码

var destinationPdf = new PdfDocument(destinationFilePath);
Int32 count = destinationPdf.PageCount;
Run Code Online (Sandbox Code Playgroud)

在内存中创建一个新文档——这个文档肯定是空的。

用于PdfReader.Open从现有文件在内存中创建文档。

当我将鼠标光标放在代码中的 PdfDocument 上时,我得到了这个工具提示:

使用指定的文件名创建一个新的 PDF 文档。文件会立即创建并保持锁定状态,直到文档关闭,此时文档会自动保存。对于使用此构造函数创建的文档,不要调用 Save(),只需调用 Close()。要打开现有的 PDF 文件并将其导入,请使用 PdfReader 类。