Thanks it worked

From: "Paulo Soares" <[EMAIL PROTECTED]>
Reply-To: Post all your questions about iText here <[email protected]> To: "Post all your questions about iText here" <[email protected]>
Subject: Re: [iText-questions] How to write new line with PdfTemplate
Date: Mon, 19 Jun 2006 19:08:01 +0100

You have to set some leading.

Paulo

----- Original Message -----
From: "Henry Doan" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Monday, June 19, 2006 6:43 PM
Subject: [iText-questions] How to write new line with PdfTemplate


>I am trying to write multiple line with PdfTemplate but everytime i write a
> new line with PdfTemplate.newlineShowText() it write over the previous
> line.
>
> Here is my code: Thanks in advance
>
> PdfReader reader = new PdfReader("e:/Webs/walton/Hello World 7.pdf");
>
> PdfStamper stamper = new PdfStamper(reader, baos);
>
> PdfContentByte cb = stamper.getUnderContent(1);
>
> // PdfTemplate
>            PdfTemplate template = cb.createTemplate(500,500);
>
> template.beginText();
>            BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA,
> BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
>            template.setFontAndSize(bf, 7);
> template.setLeading(2);
>            template.showText("SOME TEXT HERE\n");
> template.newlineShowText("asfasdfdfadfASDFADF");
>            template.endText();
> //                        X    Y
> cb.addTemplate(template, 100, 800);
>
> stamper.close();
> reader.close();
>
> _________________________________________________________________
> Express yourself instantly with MSN Messenger! Download today - it's FREE!
> http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
>
>
>
> _______________________________________________
> iText-questions mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/itext-questions



_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

_________________________________________________________________
Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/


_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to