[iText-questions] importRtfDocument: Images

2007-04-18 Thread Minolin Padayachee
Hi, On importing a document with images it just hangs, but with only text it works fine. Does any know if importing with images supported currently and if not, if there is a workaround to this? Regards - This

Re: [iText-questions] Iterate PdfPCellS contained in a PdfPRow

2007-04-18 Thread Paulo Soares
Cell access is not possible once it's added to the table. Paulo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lalonde, Pierre: #CIO - BPI Sent: Tuesday, April 17, 2007 5:56 PM To: itext-questions@lists.sourceforge.net Subject:

[iText-questions] Adding text to existing PDF

2007-04-18 Thread Patrick Mugabe
Hi, Is there a way of adding text to an existing PDF. If for instance the existing PDF has a blank field for student Name and I want to add text to that. e.g Student name: ___ Address: ___ Any other text

Re: [iText-questions] importRtfDocument: Images

2007-04-18 Thread Bruno Lowagie (iText)
Minolin Padayachee wrote: Hi, On importing a document with images it just hangs, but with only text it works fine. Does any know if importing with images supported currently and if not, if there is a workaround to this? It works with images. The problem you're mentioning can't be

Re: [iText-questions] ***SPAM*** Adding text to existing PDF

2007-04-18 Thread Bruno Lowagie (iText)
Patrick Mugabe wrote: Hi, Is there a way of adding text to an existing PDF. If for instance the existing PDF has a blank field for *student Name* and I want to add text to that. e.g Student name: ___ Address: ___ This

[iText-questions] Best Font to support all European languages ?

2007-04-18 Thread Harakiri
Hello, i read the peace example with multiple languages and their font. Im still unsure on the font choice tho, so far it seems that arial.ttf is able to display all european languages. Can anyone suggest the right font ? Specifically the major languages like france,german and russian should be

Re: [iText-questions] Graphic / Horizontal line

2007-04-18 Thread Mitch Freed
The best solution I could find was to use a PdfPTable: (this is C#, but you can get the idea) PdfPTable t = new PdfPTable(1); t.HorizontalAlignment = Element.ALIGN_CENTER; t.WidthPercentage = 100f; // this would be the 100 from setHorizontalLine t.SpacingAfter = 5f; t.SpacingBefore = 0f;

Re: [iText-questions] Graphic / Horizontal line

2007-04-18 Thread Iliadis Yannis
I used PdfPCellEvent's to draw a line in one cell. The Result I wanted was something like this: Cell1.1 Cell1.2 Value Cell2.1 Cell2.2 Value Cell3.1 Cell3.2 Value Total Value So I created a

Re: [iText-questions] Best Font to support all European languages ?

2007-04-18 Thread mister bean
If you're working on Windows the charmap tool (C:\WINDOWS\system32\charmap.exe) permits you to see the entire set of implemented glyphs in a particular font file. The version of TimesRoman that is bundled with Windows, it appears, covers all European fonts, plus Cyrillic (Russian) and some,

[iText-questions] Question about PDF titles

2007-04-18 Thread Joel Morris
Hello, I have been working with iText to add and update titles on PDF documents. I have been using the PDFStamper to do this PdfReader reader = new PdfReader(originalFilename); PdfStamper stamper = new PdfStamper(reader,new FileOutputStream (originalFilename, true)); HashMap info =

Re: [iText-questions] importRtfDocument: Images

2007-04-18 Thread Mark Hall
On Wednesday 18 April 2007 07:23, Minolin Padayachee wrote: Does any know if importing with images supported currently and if not, if there is a workaround to this? The import functionality is still fragile, so there might be problems. I will be working to improve the import functionality and