Hi,
I have an application that cuts an
existing pdf document in 2 pieces. It takes the last page apart, and puts a
text on "the back" (essentially it adds a page of the same size and
prints the last pages duplex).
The text should always be in the top-left
corner of the page, regardless if the page is A5, A4, letter, portrait or
landscape. Is there an easy way to get this done?
Currently I use:
Phrase myPhrase = new
Phrase(theLegalizationText, new Font(myFont,FONT_SIZE));
myColumnText.setSimpleColumn(theLegTextLowerLeftX,
theLegTextLowerLeftY, theLegTextUpperRightX, theLegTextUpperRightY, LEADING, com.lowagie.text.Element.ALIGN_LEFT);
myColumnText.addText(myPhrase);
myColumnText.go();
How do I do this. Thanks in advance!
Regards,
Erik