I need to add some text information to the top of some documents and have 
that information read aloud in Acrobat.  I have been using the following 
code:

PdfContentByte over=stamper.getOverContent(1);
over.beginText();
over.setFontAndSize(BaseFont.createFont(BaseFont.HELVETICA, 
BaseFont.WINANSI, BaseFont.EMBEDDED), 12);
over.setTextMatrix(0, rect.top() - 12 );
over.showText("Title: " + title + "  ");
over.endText();

This appears to work fine when read in Acrobat 7.0, but in 6.0, it does not 
read out loud.  Any idea why?  Is there a better way I should do this?

Carl




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

Reply via email to