Hi,
What is the difference between Artbox,BleedBox,CropBox, MediaBox,TrimBox and Rect property of the Page class. Can you please share some examples of usage.
Regards,
Sandeep
Hi,
Hi Sandeep,
foreach (Page page in doc.Pages)
{
Rectangle rect = page.GetPageRect(true);
Console.WriteLine(“Page {0} width is {1} and heigth is {2}, rotation: {3}, size considering rotation: widht {4} : height {5}”, page.Number, page.Rect.Width, page.Rect.Height, page.Rotate.ToString(), rect.Width, rect.Height);
}
Please feel free to contact us for any further assistance.
Best Regards,