I�m getting this error when using document.newPage() with absolute
positioning of text...
"Illegal operation �Tm� outside text object"
the code that generates the pdf is the following.
Document document = new Document(PageSize.LEGAL , 0, 0, 0, 0);
PdfWriter writer = PdfWriter.getInstance(document, new
FileOutputStream(absoluto));
document.open();
PdfContentByte cb = writer.getDirectContent();
cb.beginText();
BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA,
BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
cb.setFontAndSize(bf, 12);
bf = BaseFont.createFont(BaseFont.HELVETICA,
BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
cb.setFontAndSize(bf, 12);
cb.setTextMatrix(200, 200);
cb.showText("text at 200x,200y pagina 1" + k);
document.newPage();
bf = BaseFont.createFont(BaseFont.HELVETICA,
BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
cb.setFontAndSize(bf, 12);
cb.setTextMatrix(200, 200);
cb.showText("text at 0x,0y pagina 2" + k);
document.newPage();
bf = BaseFont.createFont(BaseFont.HELVETICA,
BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
cb.setFontAndSize(bf, 12);
cb.setTextMatrix(110,110);
cb.showText("text at 0x,0y pagina 3" + k);
Any ideas of what could be wrong??
--------------------------------------------
Esteban Gonzalez
Departamento de Sistemas
ASSIST-CARD International
_______________________________________________________________
Have big pipes? SourceForge.net is looking for download mirrors. We supply
the hardware. You get the recognition. Email Us: [EMAIL PROTECTED]
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions