Hi,
Seems you need to change one or more of the following boundaries
MediaBox - (Required; inheritable) A rectangle (see Section 3.8.4, “Rectangles”), ex
pressed in default user space units, defining the boundaries of the physical
medium on which the page is intended to be displayed or printed (see
Section 10.10.1, “Page Boundaries”).
CropBox - (Optional; inheritable) A rectangle, expressed in default user space units,
defining the visible region of default user space. When the page is dis
played or printed, its contents are to be clipped (cropped) to this rectangle
and then imposed on the output medium in some implementation
defined manner (see Section 10.10.1, “Page Boundaries”). Default value:
the value of MediaBox.
BleedBox - (Optional; PDF 1.3) A rectangle, expressed in default user space units, de
fining the region to which the contents of the page should be clipped
when output in a production environment (see Section 10.10.1, “Page
Boundaries”). Default value: the value of CropBox.
TrimBox - (Optional; PDF 1.3) A rectangle, expressed in default user space units, de
fining the intended dimensions of the finished page after trimming (see
Section 10.10.1, “Page Boundaries”). Default value: the value of CropBox.
ArtBox - (Optional; PDF 1.3) A rectangle, expressed in default user space units, de
fining the extent of the page’s meaningful content (including potential
white space) as intended by the page’s creator (see Section 10.10.1, “Page
Boundaries”). Default value: the value of CropBox.

Here is an example how to get these boxes
https://forum.patagames....-and-trimbox-of-the-PageChanging these properties is the opposite. Something like this
Code:var array = PdfTypeArray.Create();
array.Add(PdfTypeNumber.Create(left));
array.Add(PdfTypeNumber.Create(bottom));
array.Add(PdfTypeNumber.Create(right));
array.Add(PdfTypeNumber.Create(top));
pageDict["CropBox"] = array;