Re: [iText-questions] Using iText to generate an XFA form with ImageFields

2007-03-09 Thread Leonard Rosenthol
On Mar 9, 2007, at 11:34 PM, Mark Storer wrote: > I don't suppose you'd care to share an example of that? Would if I could :(. > My experience (using a > single XFA steam containing an xdp with just a template section, no > config/data/locale) has been different. I wonder where

[iText-questions] Sections Don't Work

2007-03-09 Thread Joe McVerry
I copied the section logic out of the itext api html docs and all pdf shows is the chapters, no sections. doc = new Document(PageSize.A4, 50, 50, 50, 50); PdfWriter.getInstance(doc, new FileOutputStream("c:/try2.pdf")); Paragraph phrase = new Paragraph("Hello

Re: [iText-questions] Using iText to generate an XFA form with ImageFields

2007-03-09 Thread Mark Storer
Leonard Rosenthol pdfsages.com> writes: > > Actually, there is NO REASON to create ANYTHING in the PDF page content itself - just leave that totally empty. (In fact, Acrobat will be MUCH HAPPIER if you don't create anything) > All you need to do is fill in the XFA XML chunks and you're all set

[iText-questions] Inheriting headers and footers

2007-03-09 Thread Lenny
When concatenating document B to document A, is there a way for document B to inherit document A's headera and/or footers? -- View this message in context: http://www.nabble.com/Inheriting-headers-and-footers-tf3378273.html#a9402675 Sent from the iText - General mailing list archive at Nabble.co

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Rick DeFazio
Finally I got some success... here is what I did. Found it in an example. It creates an exact copy of the PDF with a new logo in it. Just what I needed. The only odd thing is I have to divide the image size by 2 to get it to a reasonable size though. If I don't the image looks huge? ie. img.sca

Re: [iText-questions] Adding content to existing PDF

2007-03-09 Thread Lenny
I was able to accomplish this by writing the new document to a byte array and then using the PdfCopyFields functionality to attach the new doc to the existing doc. I guess it pays to look at the examples carefully :) Thanks, Lenny Lenny wrote: > > I have an existing PDF template that I want t

Re: [iText-questions] Signature fields lost when usingPdfContentByte

2007-03-09 Thread Rick DeFazio
Finally I got some success... here is what I did. Found it in an example. It creates an exact copy of the PDF with a new logo in it. Just what I needed. The only odd thing is I have to divide the image size by 2 to get it to a reasonable size though. If I don't the image looks huge? ie. img.sca

Re: [iText-questions] Signature fields lost when usingPdfContentByte

2007-03-09 Thread Paulo Soares
If you first flatten Final_PKI_logo.jpg it may work. Paulo - Original Message - From: "Rick DeFazio" <[EMAIL PROTECTED]> To: Sent: Friday, March 09, 2007 8:06 PM Subject: Re: [iText-questions] Signature fields lost when usingPdfContentByte > Thanks Bruno, what I am simply trying to d

Re: [iText-questions] Signature fields lost when usingPdfContentByte

2007-03-09 Thread Rick DeFazio
Thanks Bruno, what I am simply trying to do is add a logo to the existing document. The code i am using below does not seem to work though... PdfReader reader = new PdfReader("C:\\originalPDF.pdf"); PdfStamper stamper = new PdfStamper(reader, new FileOutputStream("C:\\newPDF.pdf")); PdfImported

Re: [iText-questions] Using iText to generate an XFA form withImageFields

2007-03-09 Thread Paulo Soares
Of course, this won't work if you create and fill with iText only without going to Acrobat to create the missing appearances (and fields, for that matter). Paulo - Original Message - From: "Leonard Rosenthol" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Fr

Re: [iText-questions] bouncy castle?

2007-03-09 Thread Paulo Soares
I can't make any promises but you are free to present your code. Paulo - Original Message - From: "robert engels" <[EMAIL PROTECTED]> To: "itext iText here" Sent: Friday, March 09, 2007 6:57 PM Subject: [iText-questions] bouncy castle? > Sorry for the delay, been out of commission...

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Rick DeFazio
Ok I'll try that... From: Stuart Jansen <[EMAIL PROTECTED]> Reply-To: Post all your questions about iText here To: Post all your questions about iText here Subject: Re: [iText-questions] Centering PdfTemplate on new page... Date: Fri, 09 Mar 2007 12:35:20 -0700 On Fri, 2007-03-09 at 14:04

[iText-questions] Adding content to existing PDF

2007-03-09 Thread Lenny
I have an existing PDF template that I want to add content to dynamically (as new pages at the end of the template). The new content is a PdfPTable, which I am successfully generating. I can read in the existing template and generate the PdfPTable but I don't know how to attach the datatable to th

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Stuart Jansen
On Fri, 2007-03-09 at 14:04 -0500, Rick DeFazio wrote: > Stuart thanks for your reply... I need to make myself more clear. > > I have a document that is full of text and headings and whatever else. I > copy it into a pdfTemplate so that I can add a logo to it. I then write this > template out to

Re: [iText-questions] Using iText to generate an XFA form with ImageFields

2007-03-09 Thread Leonard Rosenthol
Actually, there is NO REASON to create ANYTHING in the PDF page content itself - just leave that totally empty. (In fact, Acrobat will be MUCH HAPPIER if you don't create anything) All you need to do is fill in the XFA XML chunks and you're all set. This is true for both static and dynam

Re: [iText-questions] Signature fields lost when usingPdfContentByte

2007-03-09 Thread Rick DeFazio
Here is the code. I copy some content from an existing PDF, add a logo to it, and write it out to a new PDF. @ things are wrong though. Signature fields are lost and the content is not centered in the new PDF? I really appreciate your help on this! Rick. Document document = new Document();

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Rick DeFazio
Here is what I am doing... PdfReader reader = new PdfReader("C:\\originalPDF.pdf"); PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:\\newPDF.pdf")); PdfImportedPage page = page = writer.getImportedPage(reader, 1); cb.addTemplate(page, 0, 0); < need to center it some

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Rick DeFazio
Stuart thanks for your reply... I need to make myself more clear. I have a document that is full of text and headings and whatever else. I copy it into a pdfTemplate so that I can add a logo to it. I then write this template out to a new document. Problem is when doing that the content is not

[iText-questions] rtf

2007-03-09 Thread Henry Lu
Mr. Bruno Lowagie: In order to do something which are not implemented in the current itext, I customized following files: \text\Table.java \text\rtf\RtfElement.java \text\rtf\table\RtfTable.java \text\rtf\table\RtfCell.java \text\rtf\field\RtfPageNumber.java \text\rtf\RtfChunk.java and new clas

[iText-questions] bouncy castle?

2007-03-09 Thread robert engels
Sorry for the delay, been out of commission... I completely understand the desire to not have to maintain fragile/ buggy code related to encryption, but why not use an interfaced based solution so that those that want to create a smaller distribution can? Again, I am willing to do that work, a

Re: [iText-questions] PdfPTable in List

2007-03-09 Thread Mitch Freed
Thanks for the help. It looks like this is a difference between Document.Add() and ColumnText.AddElement(). It isn't working using ColumnText to add the PdfPTable to the List and then add the list to ColumnText. Thanks, -Mitch -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROT

Re: [iText-questions] Using iText to generate an XFA form with ImageFields

2007-03-09 Thread Mark Storer
> I would like to programmatically generate an XFA form with > ImageField components. That is, form elements where images > can be rendered. I can do this manually using Adobe Designer, > but I want the form-generation to be driven by code. > Is this possible using iText ? If so, how ? In th

Re: [iText-questions] Download iText 2.0.1

2007-03-09 Thread Stuart Jansen
On Fri, 2007-03-09 at 19:23 +0100, Gianluca DAlessandro wrote: > can you tell me where i can download iText 2.0.1? http://sourceforge.net/project/showfiles.php?group_id=15255 Bruno: Looks like lowagie.com hasn't been updated yet. -- Stuart Jansen <[EMAIL PROTECTED]> Guru Labs, L.C. signature.

[iText-questions] Download iText 2.0.1

2007-03-09 Thread Gianluca DAlessandro
Hi, can you tell me where i can download iText 2.0.1? Thanks - L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail- Take Surveys. Earn Cash. I

Re: [iText-questions] HTML to PDF

2007-03-09 Thread Bruno Lowagie
Gianluca DAlessandro wrote: > but in the pdf file elements corresponding to html tags are sovrapposed. What does sovrapposed mean? If you mean the words are covering each other: I have fixed this in iText 2.0.1. br, Bruno - T

Re: [iText-questions] PdfPTable in List

2007-03-09 Thread Bruno Lowagie
Mitch Freed wrote: I had and it doesn't. You're not trying hard enough. You can't add a PdfPTable to ListItem() My attachment proves the opposite. but you can add it to the List class. That's not done. br, Bruno table_in_list.pdf Description: Adobe PDF document package test; import

[iText-questions] HTML to PDF

2007-03-09 Thread Gianluca DAlessandro
Hi, i wrote the following code to convert HTML file to PDF: FileReader fr = new FileReader("c:/file.html"); // step 4: we add a paragraph to the document ArrayList elementlist = HTMLWorker.parseToList(fr, null); for (int i = 0; i < elementlist.size(); i++) {

Re: [iText-questions] HTML attributes in Table

2007-03-09 Thread mdcapurro
I'm workig with this, and i change the SAXiTextHandler.java on the "ROW" area (see below between the //DANY are my change to support relative width) I'm change this when i use the HTMLParser but, now i'm need stylesheet and i use the HTMLWorker, the table are some problems yet. I'm working o

Re: [iText-questions] PdfPTable in List

2007-03-09 Thread Mitch Freed
I had and it doesn't. You can't add a PdfPTable to ListItem(), but you can add it to the List class. The list accepts the PdfPTable, but it doesn't get rendered to the Pdf. Thanks, -Mitch -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie Sent:

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Bruno Lowagie
Rick DeFazio wrote: > Bruno, your suggestion of wrapping a pdfTemplate in an Image to center it on > the new page... how would that work? I didn't know you were adding the Image to the direct content. br, Bruno - Take Survey

Re: [iText-questions] Signature fields lost when using PdfContentByte

2007-03-09 Thread Bruno Lowagie
Rick DeFazio wrote: > I copy a document that has 2 signature fields on it using PdfContentByte. Saying you copy a document 'using PdfContentByte' is ambiguous. Define 'I copy'; choose one of the following answers: - with PdfWriter - with PdfCopy - with PdfStamper - NOTE THAT THIS IS THE ONLY GOOD

Re: [iText-questions] PdfPTable in List

2007-03-09 Thread Bruno Lowagie
Mitch Freed wrote: > I'm pretty sure I've asked this before, but can't find any post about it > so I'll ask again. Is it possible to add a PdfPTable to a List using the > List class? Why not just try if it works? If not, ask the question again and add your small code sample. br, Bruno -

Re: [iText-questions] doPost problem

2007-03-09 Thread Bruno Lowagie
leo wrote: > I am using iText on Tomcat 5. if I use get method, > form values can be displayed in the PDF file, but not > for post method. Why? thank you http://itext.ugent.be/library/question.php?id=42 - Take Surveys. Earn C

Re: [iText-questions] doPost problem

2007-03-09 Thread Stuart Jansen
On Fri, 2007-03-09 at 08:57 -0800, leo wrote: > I am using iText on Tomcat 5. if I use get method, > form values can be displayed in the PDF file, but not > for post method. Why? thank you The farmer forgot to milk his cows this morning. Without more context, preferably in the form of source code

[iText-questions] doPost problem

2007-03-09 Thread leo
I am using iText on Tomcat 5. if I use get method, form values can be displayed in the PDF file, but not for post method. Why? thank you Don't pick lemons. See all the new 2007 cars at Yahoo! Autos. http://auto

[iText-questions] HTML to PDF

2007-03-09 Thread Gianluca DAlessandro
Hi, i'd like to convert HTML file to PDF using iText. If this is possible, can you say me what are the steps to do ? Thanks! - L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail-

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Stuart Jansen
On Fri, 2007-03-09 at 11:23 -0500, Rick DeFazio wrote: > Here are my requirements: > > 1. ability to add a company logo to an existing document on a mass scale. > > So my steps are: > > 1. use PdfContentByte to copy the document > 2. then add the logo to the copied document ie. cb.addImage(img);

Re: [iText-questions] adding imported pages

2007-03-09 Thread Paulo Soares
PdfWriter.setStrictImageSequence(true). Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Trevor Kramer > Sent: Friday, March 09, 2007 4:49 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] adding imported pages >

[iText-questions] adding imported pages

2007-03-09 Thread Trevor Kramer
When adding imported pdf pages to a pdf they are sometimes placed on a new page while content added after will appear before it on the previous page. So with this code below the caption will appear before the imported page. Is there a way to ensure everything appears in the order added? PdfReader

[iText-questions] Signature fields lost when using PdfContentByte

2007-03-09 Thread Rick DeFazio
I copy a document that has 2 signature fields on it using PdfContentByte. The newly created document ends up losing these 2 signature fields? Does anyone know of some example code to get around this? I have searched but found none... Thanks.

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Rick DeFazio
Here are my requirements: 1. ability to add a company logo to an existing document on a mass scale. So my steps are: 1. use PdfContentByte to copy the document 2. then add the logo to the copied document ie. cb.addImage(img); 3. and finally I need to CENTER this imported new page onto a new doc

Re: [iText-questions] Convert HTML to PDF

2007-03-09 Thread Stuart Jansen
On Fri, 2007-03-09 at 17:06 +0100, Gianluca DAlessandro wrote: > i'd like to convert HTML file to PDF using iText. If this is possible, > can you say me what are the steps to do ? http://www.google.com/search?q=convert+html+to+pdf+using+itext http://www.lowagie.com/iText/faq.html#html2pdf -- Stu

[iText-questions] PdfPTable in List

2007-03-09 Thread Mitch Freed
I'm pretty sure I've asked this before, but can't find any post about it so I'll ask again. Is it possible to add a PdfPTable to a List using the List class? Thanks, Mitch Freed Email: [EMAIL PROTECTED] - Take Surveys. Ea

[iText-questions] Convert HTML to PDF

2007-03-09 Thread Gianluca DAlessandro
Hi, i'd like to convert HTML file to PDF using iText. If this is possible, can you say me what are the steps to do ? Thanks! - L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail--

Re: [iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Stuart Jansen
On Fri, 2007-03-09 at 10:58 -0500, Rick DeFazio wrote: > Bruno, your suggestion of wrapping a pdfTemplate in an Image to center it on > the new page... how would that work? I appreciate your help! BTW does this > seem like a good practice as I may be doing this to hundreds of legal > documents..

[iText-questions] Centering PdfTemplate on new page...

2007-03-09 Thread Rick DeFazio
Bruno, your suggestion of wrapping a pdfTemplate in an Image to center it on the new page... how would that work? I appreciate your help! BTW does this seem like a good practice as I may be doing this to hundreds of legal documents... PdfContentByte cb = writer.getDirectContent(); PdfImportedP

Re: [iText-questions] Tiff orientation

2007-03-09 Thread beppecosta
Paulo, I asked the developer of Leptonica/Jbig2 software for the problem that jbig2 compression loses the orientation. They fixed it and now the image with orientation tag = 8 comes to iText already rotated - and setRotationDegrees is not necessary any more. The setPageSize(PageSize.A4.rotate())

Re: [iText-questions] Eclipse BIRT plugin iText Error

2007-03-09 Thread Bruno Lowagie (iText)
Robert Hunter wrote: > I'm getting the " File does not begin with '%pdf'-" message when I try > to export the eclipse BIRT report to PDF. My guess is that I need to do > something different with iText on our production Tomcat and Birt-Viewer. > > I've installed the iText 1.3 and iTextAsian JAR's

[iText-questions] Borders of images in rtf documents

2007-03-09 Thread mik1982
Hi everyone! I'm using iText to generate an rtf document and it works fine. I have some problems in defining the borders of images... I used the same code as in the "iText in Action" book: Image jpg = Image.getInstance("foxdog.jpg"); jpg.setBorder(Image.BOX); jpg.setBorderColor(new Color(0xFF, 0x

[iText-questions] Eclipse BIRT plugin iText Error

2007-03-09 Thread Robert Hunter
The iText works fine on my localhost tomcat development application and browser (firefox) with Adobe reader 8, but does not work on our tomcat production application. I'm getting the " File does not begin with '%pdf'-" message when I try to export the eclipse BIRT report to PDF. My guess is tha

[iText-questions] Using iText to generate an XFA form with ImageFields

2007-03-09 Thread Navert, Bruno (IT)
Hi, I would like to programmatically generate an XFA form with ImageField components. That is, form elements where images can be rendered. I can do this manually using Adobe Designer, but I want the form-generation to be driven by code. Is this possible using iText ? If so, how ? Bruno Nave

Re: [iText-questions] HTML attributes in Table

2007-03-09 Thread Bruno Lowagie (iText)
danielb wrote: > I'd like to know if its possible to add html attributes > (like 'id') to Table or Cell objects, or at least if its possible to set > relative widths. Add html attributes: wrap the iText objects in a MarkedContent object. Set relative widths: inspect the HtmlWriter code. I don't kn

Re: [iText-questions] Tiff2Pdf

2007-03-09 Thread beppecosta
BOTH !! Thanks a lot. Giuseppe. Paulo Soares wrote: > > com.lowagie.text.pdf.codec.TIFFConstants.TIFFTAG_DATETIME but you already > know that. > Maybe you are looking for this: > http://partners.adobe.com/public/developer/tiff/index.html. > > Paulo > > >> -Original Message- >> From:

Re: [iText-questions] Tiff2Pdf

2007-03-09 Thread Paulo Soares
com.lowagie.text.pdf.codec.TIFFConstants.TIFFTAG_DATETIME but you already know that. Maybe you are looking for this: http://partners.adobe.com/public/developer/tiff/index.html. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of beppecosta

[iText-questions] HTML attributes in Table

2007-03-09 Thread danielb
Hi, I called setWidths(float[]) on my Table objects, but when converted to HTML, it had no effect. I'd like to know if its possible to add html attributes (like 'id') to Table or Cell objects, or at least if its possible to set relative widths. My option B is to do post-export string manipulati

Re: [iText-questions] Tiff2Pdf

2007-03-09 Thread beppecosta
I could get the DateTime TAG with TIFFField dt = dir.getField(306) but I would like to code TIFFField dt = dir.getField(TIFFTAG_DATETIME) Where TIFFTAG_DATETIME comes from ? Paulo Soares wrote: > > What is the question? > > Paulo > >> -Original Message- >> From: [EMAIL PROTE

Re: [iText-questions] Remove me from mailing list

2007-03-09 Thread Udo Rader
On Fri, 2007-03-09 at 14:24 +, Anthony Massa wrote: > how to get off the mailing list the same way as you subscribed to it or by reading what's inside the header of every single mail posted: > List-Id: Post all your questions about iText here > > List-Unsubscribe: >

[iText-questions] Remove me from mailing list

2007-03-09 Thread Anthony Massa
how to get off the mailing list Find a local pizza place, movie theater, and more….then map the best route! - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the ch

Re: [iText-questions] Tiff2Pdf

2007-03-09 Thread Paulo Soares
What is the question? Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of beppecosta > Sent: Friday, March 09, 2007 2:08 PM > To: itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] Tiff2Pdf > > > Paulo, > > what shall I

[iText-questions] Using IText to generate pdf in popup

2007-03-09 Thread Erik Govaers
Hello, I'm using IText to generate a pdf file to be displayed in a popup window whenever someone clicks a link on my jsf. My configuration: Windows XP JDK 1.4 MyFaces Spring IE 6 The component used in my jsf looks like this: The idea is to first open a blank new browser window and t

Re: [iText-questions] Tiff2Pdf

2007-03-09 Thread beppecosta
Paulo, what shall I include to get the TIFFConstants.TIFFTAG_* ? Thanks. Paulo Soares wrote: > > > >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On >> Behalf Of beppecosta >> Sent: Friday, March 09, 2007 11:34 AM >> To: itext-questions@lists.sourc

[iText-questions] Image extraction with iText

2007-03-09 Thread Develop
Hi, Can I use iTextSharp do do extract images from PDF files? If yes, does anyone has examples how to do this? I'm trying to extract without success. Thanks Rodrigo __ Fale com seus amigos de graça com o novo Yahoo! Messenger

Re: [iText-questions] Tiff2Pdf

2007-03-09 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of beppecosta > Sent: Friday, March 09, 2007 11:34 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Tiff2Pdf > > > I've already posted on this subject but nobody answered

Re: [iText-questions] iText Seminars

2007-03-09 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Bruno Lowagie (iText) > Sent: Friday, March 09, 2007 9:32 AM > To: Post all your questions about iText here > Subject: Re: [iText-questions] iText Seminars > > Iliadis Yannis wrote: > > Hi Bruno.

[iText-questions] Tiff2Pdf

2007-03-09 Thread beppecosta
I've already posted on this subject but nobody answered because probably my question was not clear enough. I'm using tiff2pdf to create pdf from scanned tiff images. Imagescaling, rotation and positioning work fine and the final pdf is perfect. However I would like to timestamp it at creation tim

Re: [iText-questions] iText Seminars

2007-03-09 Thread Iliadis Yannis
Sound very interesting. I wish you good luck in your Lecture and I hope it will have great success. 2007/3/9, Bruno Lowagie (iText) <[EMAIL PROTECTED]>: Iliadis Yannis wrote: > Hi Bruno. > > Reading in another thread that you are currently teaching iText at your > University, do You and Paulo c

Re: [iText-questions] Creating a Checkbox widget

2007-03-09 Thread Bruno Lowagie (iText)
Mike Buchanan wrote: Now I am able to create a Checkbox widget exactly like I wanted to do and, after looking at your example, I was able to change this to a cool looking check in the box instead of a big X. I'd have done it differently. (See attachment.) However, the output only has the Ch

Re: [iText-questions] iText Seminars

2007-03-09 Thread duschhaube
"itext on tour" sounds create. Bruno Lowagie (iText) schrieb: > Iliadis Yannis wrote: >> Hi Bruno. >> >> Reading in another thread that you are currently teaching iText at your >> University, do You and Paulo consider having any seminars or other >> developer workshops about iText? > > I don't

Re: [iText-questions] iText Seminars

2007-03-09 Thread Bruno Lowagie (iText)
Iliadis Yannis wrote: > Hi Bruno. > > Reading in another thread that you are currently teaching iText at your > University, do You and Paulo consider having any seminars or other > developer workshops about iText? I don't know about Paulo, but my 2 hour talk for the students next week is a firs

[iText-questions] iText Seminars

2007-03-09 Thread Iliadis Yannis
Hi Bruno. Reading in another thread that you are currently teaching iText at your University, do You and Paulo consider having any seminars or other developer workshops about iText? Yannis Iliadis - Take Surveys. Earn Cash.

Re: [iText-questions] Not Getting the "art" value using thePdfReader

2007-03-09 Thread Bruno Lowagie (iText)
Joshua Augustin wrote: > Thanks a lot Bruno, > > But how do I get the value for the key /Apag_BoxInfo since the PdfName > doesn't have a Field for that key. Is there any way I can put that key > in the PdfName? There's no need for such a key. PdfName has a constructor you can use to create your

Re: [iText-questions] HR Using PageEvent vs DeprecatedGraphic Object

2007-03-09 Thread Bruno Lowagie (iText)
Mitch Freed wrote: > That worked, thanks for the help Bruno. > > I just created a 1-row, 1-column table with a bottom border and added an > empty string to the table. If I added anything to the table it increased > it's height. FYI: You could control the height by using setFixedHeight on the cell

Re: [iText-questions] Does it fully compitable between different iTEX version

2007-03-09 Thread Bruno Lowagie (iText)
XD4200/鄭奇勳 wrote: > I write a java application to generate PDFTable report using itex-037.jar That version is six and a half years old! In the IT world three years is an eternity. > Do we have any way to upgrade to the latest version and > don't need to modify the program? I don't know any appl

Re: [iText-questions] mix direct content and high level objects

2007-03-09 Thread Bruno Lowagie (iText)
duschhaube wrote: > Hello, > > > I need to add textboxes at a absolut position in the pdf. The textboxes could > contain paragraphs and lists. Is it possible to add a paragraph or a > list to a absolut possition? Or is it possible to mix direct content and high > level objects. That's what Co