How to get the page width and height of a PDF document?
This is what I have so far:
string source=@"D:\pdf\test.pdf"; PdfReader reader = new PdfReader(source);
Posted on StackOverflow on Aug 13, 2013 by Mohamed Kamal
Do you want the MediaBox?
Rectangle mediabox = reader.GetPageSize(page);
Do you want the rotation?
int rotation = reader.GetPageRotation(page);
Do you want the combination of both?
Rectangle pagesize = reader.GetPageSizeWithRotation(page);
Do you want the CropBox?
Rectangle cropbox = reader.GetCropBox(page);
These are some methods that will give you information about the dimensions of a page. Most of them return an object of type Rectangle
that has methods such as getWidth()
and getHeight()
to get the width and the height of the page. Other useful methods are getLeft()
and getRight()
as well as getTop()
and getBottom()
. These four methods return the x
and y
coordinates that define the boundaries of your page.