PageCount

PdfLoadOptions.PageCount property

获取或设置要读取的页数。默认值为 MaxValue,表示将读取文档的所有页面。

public int PageCount { get; set; }

例子

展示如何在加载 PDF 文件时跳过图像。

PdfLoadOptions options = new PdfLoadOptions();
options.SkipPdfImages = isSkipPdfImages;
options.PageIndex = 0;
options.PageCount = 1;

Document doc = new Document(MyDir + "Images.pdf", options);
NodeCollection shapeCollection = doc.GetChildNodes(NodeType.Shape, true);

if (isSkipPdfImages)
    Assert.AreEqual(shapeCollection.Count, 0);
else
    Assert.AreNotEqual(shapeCollection.Count, 0);

也可以看看