The text matrix transformation is not cumulative as the PdfContentByte.transform().
Best Regards, Paulo Soares > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of sf > Sent: Tuesday, June 22, 2004 10:10 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] text matrix > > Hello, > > I am trying to use a text matrix in PdfContentByte but it > does not work > as expected. Here is my code: > > final BaseFont headerFont > = BaseFont.createFont (BaseFont.HELVETICA_BOLD, > BaseFont.WINANSI, > false); > final Document document = new Document (PageSize.A4); > final PdfWriter writer = PdfWriter.getInstance > (document, System.out); > document.open (); > final PdfContentByte g = writer.getDirectContent (); > g.transform (AffineTransform.getTranslateInstance (0, 842)); > g.transform (AffineTransform.getScaleInstance (1, -1)); > g.setFontAndSize (headerFont, 12f); > g.beginText (); > g.setTextMatrix (1f, 0f, 0f, -1f, 0f, 0f); > g.showTextAlignedKerned (PdfContentByte.ALIGN_LEFT, > "Test \u20ac", > 10f, 10f, 0f); > g.endText (); > document.close (); > > The call to setTextMatrix does not seem to do anything. > > Regards > Stephan > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > iText-questions mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/itext-questions > ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
