Obtain Page dimensions (height/width) using C++ library

Product: Linux/C++ PDFNet

Product Version:

Please give a brief summary of your issue:
Obtain Page dimensions of multi page PDF’s

Please describe your issue and provide steps to reproduce it:
We are currently using SaveAsXFDF to obtain field properties (field names, x/y coordinates etc.) but I don’t see page dimensions in the extract data. How can we get this information?

Please provide a link to a minimal sample where the issue is reproducible:

The following sample shows how to iterate the pages of a PDF file.

As for getting the page dimension, to match up with what is in the XFDF you would use the following 3 API calls.

Rect cropBox = page.GetCropBox();
double unrotatedPageWidthInPts = cropBox.Width();
double unrotatedPageHeightInPts = cropBox.Height();

Thanks Ryan . Side question: Do you know which .NET nuget package I should if I want to try this in .NET? I see three different nuget packages:

PDFTron.NET.x64
PDFTron.NETCore.WIndows.x64
PDFTron.NetFramework.x64

This post explains the different packages.