Hi,
We trying to append the image, Last page of PDF content end position accurately. Please share any example code.
Hi,
Hi,
// Open document
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document(@"C:\Pdf\test104\input.pdf");
// Create TextAbsorber object to find all instances
TextFragmentAbsorber textFragmentAbsorber = new TextFragmentAbsorber();
// Accept the absorber for the page index 1
pdfDocument.Pages[1].Accept(textFragmentAbsorber);
// Get the extracted text fragments
TextFragmentCollection textFragmentCollection = textFragmentAbsorber.TextFragments;
// get the rectangle location of the last text fragment
Aspose.Pdf.Rectangle lastFragmentRect = textFragmentCollection[textFragmentCollection.Count].Rectangle;
// get the rectangle of PDF page
Aspose.Pdf.Rectangle pageRect = pdfDocument.Pages[1].Rect;