Search Results for

    Show / Hide Table of Contents

    Class PdfPageModel

    Represents the document object model (DOM) for a single PDF page. Provides access to text, image, and path objects for content analysis and extraction.

    This class exposes the internal structure of a PDF page, allowing programmatic access to individual content elements. Use for content extraction, analysis, or understanding page composition.

    Example - Analyze page content:

    var pdf = PdfDocument.FromFile("document.pdf");
    var pageModel = pdf.Pages[0].GetPageModel();
    

    // Count content elements: Console.WriteLine($"Images: {pageModel.ImageObjects.Count}"); Console.WriteLine($"Text blocks: {pageModel.TextObjects.Count}"); Console.WriteLine($"Paths/shapes: {pageModel.PathObjects.Count}");

    // Get page dimensions: var bounds = pageModel.BoundingBox; Console.WriteLine($"Page size: {bounds.Width} x {bounds.Height} points");

    // Export to JSON: string json = pageModel.ToJson();

    Inheritance
    System.Object
    PdfClientAccessor
    PdfPageModel
    Implements
    IPdfPageObjectModel
    IronSoftware.Abstractions.Pdf.IDocumentPageObjectModel<TextObjectCollection, PathObjectCollection, ImageObjectCollection>
    IronSoftware.Abstractions.IBounded
    IronSoftware.Abstractions.IJsonSerializable
    Namespace: IronPdf.Pages
    Assembly: IronPdf.dll
    Syntax
    public class PdfPageModel : PdfClientAccessor, IPdfPageObjectModel, IDocumentPageObjectModel<TextObjectCollection, PathObjectCollection, ImageObjectCollection>, IBounded, IJsonSerializable
    Remarks

    Key Properties:

    Standards:

    Properties

    BoundingBox

    Declaration
    public RectangleF BoundingBox { get; set; }
    Property Value
    Type Description
    System.Drawing.RectangleF

    ImageObjects

    Gets the collection of embedded images on this page. Each image includes position, dimensions, and raw image data.

    Example - Extract all images:

    foreach (var img in pageModel.ImageObjects)
    {
        Console.WriteLine($"Image at ({img.BoundingBox.X}, {img.BoundingBox.Y})");
        Console.WriteLine($"Size: {img.BoundingBox.Width} x {img.BoundingBox.Height}");
    }

    Declaration
    public ImageObjectCollection ImageObjects { get; }
    Property Value
    Type Description
    ImageObjectCollection

    Collection of ImageObject instances on this page.

    See Also
    ExtractAllImages()

    PageIndex

    Declaration
    public uint PageIndex { get; }
    Property Value
    Type Description
    System.UInt32

    PathObjects

    Gets the collection of vector path objects (shapes, lines, curves) on this page. Includes rectangles, lines, bezier curves, and complex vector graphics.

    Example - Analyze shapes:

    foreach (var path in pageModel.PathObjects)
    {
        var box = path.BoundingBox;
        Console.WriteLine($"Shape at ({box.X}, {box.Y}), size: {box.Width} x {box.Height}");
    }

    Declaration
    public PathObjectCollection PathObjects { get; }
    Property Value
    Type Description
    PathObjectCollection

    Collection of PathObject instances representing vector graphics.

    Remarks

    Path objects include borders, lines, shapes, and decorative elements. They are defined using PDF path operators (moveto, lineto, curveto, etc.).

    TextObjects

    Gets the collection of text objects (characters, words, text runs) on this page. Provides granular access to text content with position, font, and style information.

    Example - Extract text with positions:

    foreach (var text in pageModel.TextObjects)
    {
        Console.WriteLine($"Text: '{text.Text}'");
        Console.WriteLine($"Position: ({text.BoundingBox.X}, {text.BoundingBox.Y})");
        Console.WriteLine($"Font: {text.FontName}, Size: {text.FontSize}");
    }

    Declaration
    public TextObjectCollection TextObjects { get; }
    Property Value
    Type Description
    TextObjectCollection

    Collection of TextObject instances with text content and metadata.

    Remarks

    For simpler text extraction without position data, use ExtractAllText(TextExtractionOrder) or ExtractTextFromPage(Int32).

    See Also
    ExtractAllText(TextExtractionOrder)

    Methods

    ToJson()

    Declaration
    public string ToJson()
    Returns
    Type Description
    System.String

    Implements

    IPdfPageObjectModel
    IronSoftware.Abstractions.Pdf.IDocumentPageObjectModel<, , >
    IronSoftware.Abstractions.IBounded
    IronSoftware.Abstractions.IJsonSerializable

    See Also

    PdfPage
    PdfPagesCollection
    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronPDF_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronPDF