[iText-questions] Scrambled Punctuation in Right To Left

2009-11-19 Thread tamtam18
I have a document that prints both Hebrew and English on the same page (sometimes even in the same cell). PdfPCell is working really well with one exception -- punctuation marks, such as colons, periods, plus/minus signs that are at the end or beginning of a string print on the wrong side of the

[iText-questions] Hebrew/RTL support for RTF?

2009-11-13 Thread tamtam18
I would like to insert Hebrew characters into a file. I am using both PDF and RTF formats. Everything works very well with PDF, but it appears that there is no support for right-to-left text in RTF. The characters come out, but they are all in the reverse order that I would expect. I have done

[iText-questions] PdfPTable Absolute Positioning

2009-07-06 Thread tamtam18
Hello, I am using the following code to place a PdfPTable at an absolute position: float yAbsolutePosition = iTextDoc.bottomMargin() + iTextPdfPTable.getTotalHeight(); iTextPdfPTable.writeSelectedRows(0, -1, iTextDoc.leftMargin(), yAbsolutePosition, pdfWriter.getDirectContent()); How

[iText-questions] PdfpTable vs. Table (vs. SimpleTable?)

2009-07-03 Thread tamtam18
I am writing code that generates both PDF and RTF documents, depending on the user's selection. The information in both documents is the same. Until now, we were using classes like Table, Cell, HeaderFooter, etc., which are rendered into the correct form by the documentwriter (either PdfWriter or

Re: [iText-questions] HeaderFooter - page number printing on next line

2009-06-24 Thread tamtam18
ed and is now deprecated. Use page events > instead. The book and the online docs have examples. > > ---mr. bean > >>>> re >>> > > > tamtam18 wrote: >> >> I figured out the problem Using a Phrase to create the HeaderFooter >> (instead

[iText-questions] HeaderFooter - page number printing on next line

2009-06-24 Thread tamtam18
I am creating a header with iText using the HeaderFooter object. The Page Number is always appearing on the second line of the header, even though there is plenty of room on the first line, and I am not explicitly putting a line break there. It seems that this problem only started when upgrading f

Re: [iText-questions] HeaderFooter - page number printing on next line

2009-06-24 Thread tamtam18
Phrase(headString, iTextHeadingFont), true); tamtam18 wrote: > > I am creating a header with iText using the HeaderFooter object. The Page > Number is always appearing on the second line of the header, even though > there is plenty of room on the first line, and I am not explicitly

[iText-questions] How to decrease cell padding in an RTF document -- iText 2.1.5

2009-05-22 Thread tamtam18
I have code written to create an RTF or PDF document using Table and Cell. With iText 1.2, the RTF document looks beautiful. However, I am trying to upgrade to iText 2.1.5, and there is a ton of spacing in each cell, without any changes to that actual code that I had before, just the upgraded iT