Re: [iText-questions] Dynamic Inline Text

2009-02-06 Thread 1T3XT info
cody.schi...@phasepointsolutions.com wrote: > I know Chapter 14 well but this does not provide a solution to allow a > user to visually create a template. No, unless you have some "visual XML" tool. > Your statement that my request is impossible to fulfill could be true > with regards to usin

Re: [iText-questions] Dynamic Inline Text

2009-02-06 Thread cody . schilke
I hear what you are saying about Adobe text being fixed/positional. But I still find it stunning that I CAN do this: "Hello Mr. John Doe" (using an AcroForm variable) But I Can't do this: "Hello Mr. John Doe, we hope you are doing well" I know Chapter 14 well but this does not provide a solu

[iText-questions] Antwort: Do not want the borders on a PDFPTable

2009-02-06 Thread Benjamin Rein
Hi Sainath, there a two different ways to create PdfPCells. Text mode and composite mode. You've used text mode. There the attributes of the paragraph are ignored. With composite mode these attributes are respected and you can use the getDefaultCell feature of PDFPTable. Have a look at this e

Re: [iText-questions] Do not want the borders on a PDFPTable

2009-02-06 Thread 1T3XT info
Sainath Nutakki wrote: > I need a PDFP table and I do not want to borders on it , the below code > does not seem to accomplish what i want. > can i anyone help me fix the code. This is explained in chapter 6 of the book. > PdfPTable tablex1=new PdfPTable(2); You don't do anything with this line

[iText-questions] Do not want the borders on a PDFPTable

2009-02-06 Thread Sainath Nutakki
I need a PDFP table and I do not want to borders on it , the below code does not seem to accomplish what i want. can i anyone help me fix the code. PdfPTable tablex1=new PdfPTable(2); tablex1.getDefaultCell().setBorder(Rectangle.NO_BORDER); tablex1.setSpacingBefore(15f); tablex1.setTotalWidth(300)

Re: [iText-questions] how to get the current position of the document using class com.lowagie.text.Document

2009-02-06 Thread 1T3XT info
Surendar Reddy.K wrote: > Hi, > > how to get the current position of document using the class > com.lowagie.text.Document, as part of my requirement i have to place the > PDFPTable at a given position. Please help me. in this context. This is a very odd question. Please clarify. -- This answ

Re: [iText-questions] What is tagmap and how xml data handled using SAXmyHandler

2009-02-06 Thread 1T3XT info
Cool The Breezer wrote: > I still trying to get accustomed to all events and would appreciate your > input/suggestion e.g. if I encounter tag "footer-book-title", I have to place > the content at bottom, for tag "book-title", I need to place a logo, author > and title in front page. > Bit confus

Re: [iText-questions] Generate Signed PDF with Timestamp

2009-02-06 Thread Massimiliano Ziccardi
Some time ago I managed creating a signed and timestamped PDF file with iText (** without changing iText code**) and I sent the working code to Paulo through the ml. If you search with google for 'PDF Signature and Timestamp - Working CODE' you should be able to find my post. Not sure Paulo added

Re: [iText-questions] Error message

2009-02-06 Thread Bruno Lowagie
Bob Axford wrote: > I also had this error and managed to fix it using a Font Properties Editor > downloadable from Microsoft: > http://www.microsoft.com/typography/property/fpedit.htm > > Using this, I opened my .ttf file and added some fields. > When it saved it created the 'name' table and I cou

Re: [iText-questions] Create TOC using existing bookmarks

2009-02-06 Thread Bruno Lowagie
Cesar wrote: > I have seen your example BookmarksToTOC1 > http://www.1t3xt.info/examples/src/questions/stamppages/BookmarksToTOC1.java > > > but i don`t know how

Re: [iText-questions] Generate Signed PDF with Timestamp

2009-02-06 Thread Fernando Alcaraz
Yet it works modifying source code, but I make it visible I obtain a null pointer exception in preClose. any idea? 2009/2/6 Fernando Alcaraz > Hi, I have read: > > > http://www.nabble.com/PDF-Digital-signature-with-timestamp---using-Time-Stamp-Authority---example-td11798693.html#a11798693 > > E

[iText-questions] Generate Signed PDF with Timestamp

2009-02-06 Thread Fernando Alcaraz
Hi, I have read: http://www.nabble.com/PDF-Digital-signature-with-timestamp---using-Time-Stamp-Authority---example-td11798693.html#a11798693 Exists any way to generate a signed PDF without modify source code of iText? Thanks a lot -