Re: [iText-questions] Question on iText license

2008-01-25 Thread Bruno Lowagie
Marek Bęgowski wrote: Hi, I would like to develop a web application where the user can generate and download PDF files. OK Can I use iText in such an application even if I get money for the downloaded files. Yes you can. For instance: the Belgian Railway company NMBS used iText to

Re: [iText-questions] question

2008-01-12 Thread Bruno Lowagie
Antonio de Jesus Prado Oliavres wrote: I have a other question, about the java code PageNumbersWatermark.java,v 1.3 2005/05/09 how can i do to modify the propertis of the images like the size, width etc.. This is a question that takes many different pages if you want the full answer. So I'm

[iText-questions] question

2008-01-11 Thread Antonio de Jesus Prado Oliavres
Hi, I have a question about the code of PageNumbersWatermark.java,v 1.32005/05/09 I don't know if you can tell me how can i do to move the image, beacause I want the image align in the center of the document, but a don't understand some funtions of the code, can you help me ? thanks, I hope your

[iText-questions] question

2008-01-11 Thread Antonio de Jesus Prado Oliavres
I have a other question, about the java code PageNumbersWatermark.java,v 1.32005/05/09 how can i do to modify the propertis of the images like the size, width etc.. - Check out the new SourceForge.net Marketplace. It's the

[iText-questions] Question on nested ordered lists

2007-12-21 Thread Amirneni, Nagendra
Hi , I am trying to convert the HTML file to PDF When I am trying to parse the html file using the following code PdfWriter.getInstance(document, new FileOutputStream(pdf)); SAXParser parser = SAXParserFactory.newInstance().newSAXParser(); InputSource in = new InputSource(new

Re: [iText-questions] Question about splitCharacter

2007-11-12 Thread Tom Tolman
I apologize since listing out the cases was not a very good way to describe my question. What I was hoping to find out is the answer to the following question: Can I get i-text to consider some characters to be allowed to only split on the end of the line, such as ')' and other characters to

Re: [iText-questions] Question about splitCharacter

2007-11-09 Thread Paulo Soares
-questions@lists.sourceforge.net Subject: [iText-questions] Question about splitCharacter I have implemented SplitCharacter and was hoping to have it split after the close parenthesis ')', but not before this character, As such I have something

Re: [iText-questions] Question about splitCharacter

2007-11-09 Thread Tom Tolman
The idea of looking at the past and future character is a good one for solving this particular instance, but it is not clear to me how it can be applied to the general instance. In the specific instance brought up, the text is wrapping on (hello) in this manner: (hello ) This can be corrected

Re: [iText-questions] Question about splitCharacter

2007-11-09 Thread Paulo Soares
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Tolman Sent: Friday, November 09, 2007 2:37 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Question about splitCharacter The idea of looking at the past and future character is a good one

[iText-questions] Question about splitCharacter

2007-11-08 Thread Tom Tolman
I have implemented SplitCharacter and was hoping to have it split after the close parenthesis ')', but not before this character, As such I have something like: public boolean isSplitCharacter(int start, int current, int end, char[] cc, PdfChunk[] ck) { char c; if (ck == null)

Re: [iText-questions] Question about combining PdfCopy and PdfWriter

2007-11-06 Thread James Beard
I am currently using iText 2.0.2 - do I need a later version than this for the newer PdfCopy functionality mentioned below? Also how do I add the crop regions using PdfReader? Thanks, James. Hi there, I am trying to use iText to both write new info to a pdf (i.e. set crop regions, rotate

Re: [iText-questions] Question about combining PdfCopy and PdfWriter

2007-11-06 Thread Bruno Lowagie (iText)
James Beard wrote: I am currently using iText 2.0.2 - do I need a later version than this for the newer PdfCopy functionality mentioned below? Only if you want to stamp extra info on the PDF. Then you'd need at least 2.0.5 (but I'd prefer using 2.0.6). Also how do I add the crop regions using

[iText-questions] Question about combining PdfCopy and PdfWriter

2007-11-05 Thread James Beard
Hi there, I am trying to use iText to both write new info to a pdf (i.e. set crop regions, rotate pages) using PdfWriter, but also want the copying functionality of PdfCopy, so that I don't lose any annotations (e.g. reference links, movies) that are contained in the PDF. Is there any way to

Re: [iText-questions] Question about combining PdfCopy and PdfWriter

2007-11-05 Thread Bruno Lowagie
James Beard wrote: Hi there, I am trying to use iText to both write new info to a pdf (i.e. set crop regions, rotate pages) using PdfWriter, but also want the copying functionality of PdfCopy, so that I don't lose any annotations (e.g. reference links, movies) that are contained in the PDF.

[iText-questions] QUESTION - Flash in PDF document

2007-11-01 Thread Andre-Pierre Fillion
Hi, Fisrt congratulation for iText. I would like to know if it's possible with iText to Put .swf in PDF using itext. I have a .swf who is build with xml file. And it's a graph on my application. So some clients want to have graph report in a pdf. So i would like to generate pdf and include my

Re: [iText-questions] QUESTION - Flash in PDF document

2007-11-01 Thread Bill Ensley
Yes, you place it as an annotation. -Bill Ensley www.bearprinting.com _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andre-Pierre Fillion Sent: Thursday, November 01, 2007 8:04 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] QUESTION - Flash

Re: [iText-questions] QUESTION - Flash in PDF document

2007-11-01 Thread Bill Ensley
,application/x-shockwave-flash,true)); -Bill Ensley www.bearprinting.com _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andre-Pierre Fillion Sent: Thursday, November 01, 2007 8:04 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] QUESTION - Flash

[iText-questions] Question about iText (filling radio button in a existing pdf file)

2007-08-31 Thread Sanku.Biswas
Hi, This is sanku. I have got problem. 1) My existing pdf contains more than two radio buttons and I want to set one of them. But my question is how can I identify them through my program? 2) My existing pdf contains two radio buttons and I am able to set them. But after

Re: [iText-questions] Question about iText (filling radio button in a existing pdf file)

2007-08-31 Thread Bruno Lowagie (iText)
[EMAIL PROTECTED] wrote: 1) My existing pdf contains more than two radio buttons and I want to set one of them. But my question is how can I identify them through my program? Read Chapter 16 of 'iText in Action'. You'll find some code that gives you the possible values of radio buttons.

Re: [iText-questions] Question about iText (filling radio button in aexisting pdf file)

2007-08-31 Thread Paulo Soares
- Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Friday, August 31, 2007 8:04 AM Subject: [iText-questions] Question about iText (filling radio button in aexisting pdf file) Hi, This is sanku. I have got problem. 1) My existing pdf

[iText-questions] Question about itext library

2007-08-28 Thread Michael.MARECHAL
Hi, I use your library Itext in a project to sign pdf file. I try to follow the code example that I saw on your website but I have a problem. This is my java code : try{ KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType()); ks.load(new

[iText-questions] Question about Itext library and pdf signature

2007-08-28 Thread Michael.MARECHAL
Hi, I use your library Itext in a project to sign pdf file. I try to follow the code example that I saw on your website but I have a problem. This is my java code : try{ KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType()); ks.load(new

Re: [iText-questions] Question about Itext library and pdf signature

2007-08-28 Thread Michael.MARECHAL
] De la part de Paret, Thierry Envoyé : mardi 28 août 2007 14:02 À : Post all your questions about iText here Objet : Re: [iText-questions] Question about Itext library and pdf signature Bonjour Michael, Your different PDF files may have different security setting in which signing

Re: [iText-questions] Question about Itext library and pdf signature

2007-08-28 Thread Paret, Thierry
PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question about Itext library and pdf signature Hi, I use your library Itext in a project to sign pdf file. I try to follow the code example that I saw on your website but I have a problem. This is my java code

Re: [iText-questions] question

2007-08-09 Thread Bruno Lowagie (iText)
Paulo Soares wrote: iText can and is used for reporting usually for custom reporting. This involves some work. For everyday reporting, simple tables, master detail, etc. it's better to use specialized tools such as birt or jasperreports. Note that specialized reporting tools such as

[iText-questions] question

2007-08-08 Thread Cole, Jared (MOH)
Hello, We are investigating options for a reporting tool for our java-web application. We need something that will be able to accept images through some sort of parameter. Basically our app will display information and an image, and we need a report that can accept this data, and the image,

Re: [iText-questions] question

2007-08-08 Thread Paulo Soares
] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 08, 2007 1:59 PM Subject: [iText-questions] question Hello, We are investigating options for a reporting tool for our java-web application. We need something that will be able to accept images through some sort of parameter

[iText-questions] Question about resources.

2007-08-06 Thread mdcapurro
Hi. Is there some resource of the machine where the itext run, like printer driver, using by the itext? Or something it need instaling at the machine? Thanks in advance, Daniela- This SF.net email is sponsored by:

Re: [iText-questions] Question about HTMLWorker

2007-06-20 Thread mdcapurro
: Assunto:Re: [iText-questions] Question about HTMLWorker It's easier to process the html. Paulo - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Tuesday, June 19, 2007 9:44 PM Subject: [iText-questions] Question about HTMLWorker HI

Re: [iText-questions] Question about HTMLWorker

2007-06-20 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: I don't understand. I have to take a change inside the htmlworker and not at ListArray returned by it? That's irrelevant. I think that Paulo meant that you should process the HTML BEFORE using HTMLWorker. Parse the HTML, filter out whatever you don't like, then use

Re: [iText-questions] Question about HTMLWorker

2007-06-20 Thread Paulo Soares
A simple regexp should be enough. Paulo - Original Message - From: Bruno Lowagie [EMAIL PROTECTED] To: Post all your questions about iText here itext-questions@lists.sourceforge.net Sent: Wednesday, June 20, 2007 6:25 PM Subject: Re: [iText-questions] Question about HTMLWorker

[iText-questions] Question about HTMLWorker

2007-06-19 Thread mdcapurro
HI. I have an html source like this: ul lipbla bla bla/p/li lipbla bla bla/p/li lipbla bla bla/p/li /ul Because there are a p, the htmlworker, correctly, make a new line. But i need delete this new line. I try using: if (e instanceof List){ .

Re: [iText-questions] Question about HTMLWorker

2007-06-19 Thread Paulo Soares
It's easier to process the html. Paulo - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Tuesday, June 19, 2007 9:44 PM Subject: [iText-questions] Question about HTMLWorker HI. I have an html source like this: ul lipbla bla bla/p/li

[iText-questions] Question

2007-05-15 Thread Eggert, Sarah
Hi, Does anyone know if there is way to disable save as functionality and email functionality from PDFs using the APIs on this product? Thanks! Sarah Eggert The Business Office [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

Re: [iText-questions] Question

2007-05-15 Thread Paulo Soares
http://itext.ugent.be/library/question.php?id=47. Paulo - Original Message - From: Eggert, Sarah [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Tuesday, May 15, 2007 5:50 PM Subject: [iText-questions] Question Hi, Does anyone know if there is way to disable save

Re: [iText-questions] Question on itext

2007-05-10 Thread Bruno Lowagie (iText)
PR, Rajesh (GE Infra, Energy) wrote: Hi, We are extensively using itext in our projects. Then you're probably making a lot of money using our free software. Fortunately if you're extensively using iText you have bought many copies of my book. Oh wait, you didn't, because if you did, you

[iText-questions] Question on itext

2007-05-09 Thread PR, Rajesh (GE Infra, Energy)
Hi, We are extensively using itext in our projects. I want to know, if itext supports multilingual capability. My requirement is that, i should be able to generate a pdf in both English and Spanish. How do i do such stuff? If anyone can provide a sample implementation, that would be great.

Re: [iText-questions] Question on itext

2007-05-09 Thread Paulo Soares
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of PR, Rajesh (GE Infra, Energy) Sent: Wednesday, May 09, 2007 3:53 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question on itext Hi, We are extensively using

Re: [iText-questions] Question on itext

2007-05-09 Thread Brian McKeever
On 5/9/07, PR, Rajesh (GE Infra, Energy) [EMAIL PROTECTED] wrote: My requirement is that, i should be able to generate a pdf in both English and Spanish. How do i do such stuff? What does this mean? A single PDF in two languages? Your first question should be does the PDF format support the

[iText-questions] Question regarding printing PDF

2007-05-07 Thread Amer Seifeddine
Hi iText team, I have a question regarding the iText printing .. A client reported that he is not able to print your sample pdf file on your site: http://blowagie.users.mcs2.netarray.com/servlet/silentprint the client reported below info: The other printer which is stable with all the other

Re: [iText-questions] Question about PDF titles

2007-04-25 Thread Joel Morris
Paulo Soares psoares at consiste.pt writes: There's code to deal with that in the package com.lowagie.text.xml.xmp. Paulo Thanks Paulo, I'm assuming that is for the RDF metadata. Any hints on updating the catalog dictionaries like Bruno suggested? --joel

Re: [iText-questions] Question about PDF titles

2007-04-23 Thread Joel Morris
Paulo Soares psoares at consiste.pt writes: He may have to also update the RDF metadata. Paulo Guys, Thanks for the response. I know you may not have any code specific to what I need to do, but could you point me in a direction of what I should be looking at? Thanks, Joel

Re: [iText-questions] Question about PDF titles

2007-04-23 Thread Paulo Soares
There's code to deal with that in the package com.lowagie.text.xml.xmp. Paulo - Original Message - From: Joel Morris [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Monday, April 23, 2007 5:25 PM Subject: Re: [iText-questions] Question about PDF titles Paulo Soares

Re: [iText-questions] Question about PDF titles

2007-04-19 Thread Paulo Soares
He may have to also update the RDF metadata. Paulo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie Sent: Thursday, April 19, 2007 4:42 PM To: Post all your questions about iText here Subject: Re: [iText-questions] Question about

[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 =

[iText-questions] Question:

2007-03-29 Thread Riccardo Corazza
Goodmorning, I need to use iText on my java application. I saw that with iText i can insert metadata into my pdf. I want to know if i can isert also custom properties into it, because i need to insert other metadata. Is it possible? Regards -- Riccardo Corazza Programmatore -

Re: [iText-questions] Question:

2007-03-29 Thread Paulo Soares
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Riccardo Corazza Sent: Thursday, March 29, 2007 8:32 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question: Goodmorning, I need to use iText on my java application

[iText-questions] Question about the style of the numbers in a Chapter or a Section!

2007-02-14 Thread Eric Summkeller
I add a Paragraph with a special style into a chapter and the numbers in front of the chapter has got another style. I would like that they have the same style like the added Paragraph. Is there any possibility to change the style for those numbers?

Re: [iText-questions] Question about the style of the numbers in a Chapter or a Section!

2007-02-14 Thread Bruno Lowagie (iText)
Eric Summkeller wrote: I would like that they have the same style like the added Paragraph. The numbers in front of a Chapter/Section take the style of the Paragraph that was passed as the title; more specifically: if you title is Paragraph p, then the font of the numbers is p.font(). If

Re: [iText-questions] Question about the style of the numbe rs in a Chapter or a Section!

2007-02-14 Thread Eric Summkeller
Bruno Lowagie (iText bruno at lowagie.com writes: Bruno Lowagie wrote: The numbers in front of a Chapter/Section take the style of the Paragraph that was passed as the title; more specifically: if you title is Paragraph p, then the font of the numbers is p.font(). If that's not the case

[iText-questions] Question about signing

2007-02-01 Thread Francesca Merighi
Hi, I'm trying to sign a pdf document using external hash and signature. I notice that if i hash the same document (the result of the method getRangeStream() ) twice, i obtain two different digests. I suppose that this is becouse the pdf signature methods introduce some randomness into the

Re: [iText-questions] Question about signing

2007-02-01 Thread Paulo Soares
] [mailto:[EMAIL PROTECTED] On Behalf Of Francesca Merighi Sent: Thursday, February 01, 2007 11:24 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question about signing Hi, I'm trying to sign a pdf document using external hash and signature. I notice that if i hash

Re: [iText-questions] Question about signing

2007-02-01 Thread Francesca
You'll need to freeze the state after preClose and resume it after the signature is received. Unfortunatly it is impossible for me to freeze the state after preClose() becouse the signature building is made by a process different from the one which has generated the hash. Could you give me a

[iText-questions] Question

2007-01-22 Thread Juan Carlos Araya Navarro
Hello, We are trying to generate a PNG image from each page of a given PDF File. In the examples I can see how the PDF file is open, and also how each page can be converted to an independient PDF file, but there is not information or examples related to PDF to PNG

Re: [iText-questions] Question

2007-01-22 Thread Bill Ensley
Subject: [iText-questions] Question Hello, We are trying to generate a PNG image from each page of a given PDF File. In the examples I can see how the PDF file is open, and also how each page can be converted to an independient PDF file, but there is not information

[iText-questions] Question/Recommendation concerning compression of images

2007-01-20 Thread Steven Case
I have an existing internal application that uses Swing/AWT and makes fairly extensive use of AWT's APIs for printing the documents created by the application. In the past, users have generated PDF versions of documents by printing to Acrobat Distiller. I now have a need to support a more

Re: [iText-questions] Question/Recommendation concerning compression of images

2007-01-20 Thread robert engels
There is an option on the PdfGraphics2D object to not convert the images to JPEG. It would be fairly trivial to modify this class to generate PNG images (using ImageIO), but I am not certain that PDF supports PNG as a native format however. Are you sure that the Distiller is not using JPEG

Re: [iText-questions] Question/Recommendation concerning compression of images

2007-01-20 Thread Steven Case
Yes, there is an option on the PdfGraphics2D object, but that option is private and can only be set via the constructor. Thus, the option cannot be changed on an image-by-image basis unless a new PdfGraphcs2D object is created prior to drawing each image. I could do that, of course, but then

Re: [iText-questions] Question/Recommendation concerning compression of images

2007-01-20 Thread robert engels
It is a trivial change, so submit a patch that allows the 'convert images to jpeg' to be enabled/disabled. You will need to use 'instance of' in your code. Probably better though would be to change the drawImage handling so that if the incoming image would create a mask if the source image

Re: [iText-questions] Question/Recommendation concerning compression of images

2007-01-20 Thread Leonard Rosenthol
On Jan 20, 2007, at 2:59 PM, Steven Case wrote: There is, however, a disadvantage that I have encountered. For quite a few users, the iText generated documents are also significantly larger. Most of the documents contain a large number of images. Distiller has a bunch of code

[iText-questions] Question about itext using pdfstamper and struts

2007-01-16 Thread Benson Chan
Hi, I'm having trouble using pdfstamper inside a web application. Right now, I have the following code: response.setContentType(application/pdf); response.addHeader(Content-disposition, attachment; filename=tester.pdf); response.setHeader(Expires, 0); response.setHeader(Cache-Control,

[iText-questions] Question about reviews

2007-01-08 Thread Paco albadeguerra
Hi there! I have a nasty problem whith a Pdf. This pdf consist in quite a lot tables, but the first one must be a review of the others. So, at first I think I could simply calculate the values of the review and then fill the other tables, but that´s a waste of resources! You have to do same work

Re: [iText-questions] Question about reviews

2007-01-08 Thread Paulo Soares
] On Behalf Of Paco albadeguerra Sent: Monday, January 08, 2007 3:07 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question about reviews Hi there! I have a nasty problem whith a Pdf. This pdf consist in quite a lot tables, but the first one must be a review

Re: [iText-questions] Question about itext PDF copy and paste

2006-12-17 Thread Bruno Lowagie (iText)
JM wrote: I am trying to read a pdf created with iText, and I can read it perfectly with adobe acrobat. It looks like an encoding issue. br, Bruno - Take Surveys. Earn Cash. Influence the Future of IT Join

[iText-questions] Question about itext PDF copy and paste

2006-12-13 Thread JM
Hi, I am trying to read a pdf created with iText, and I can read it perfectly with adobe acrobat. But when I try to copy and paste I obtained very weird data something like: ___(_5 _ ___ !6__ _5+__(_ ___ _+!__3_(_ ___ __(__(_3___(__ +_ _(___

Re: [iText-questions] Question about Unicode Fillable Form

2006-11-16 Thread Paulo Soares
To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question about Unicode Fillable Form Dear Support, I want to create a fillable form to let the user enter the Greeks. When I use this code, the new form is not fillable. Please see my pdf. Please help. Thanks

[iText-questions] Question on tablelayout.

2006-10-31 Thread Ruslan KULUBAEV
Hi, I had constructed a table. Have overriden the TableLayout method. My table looks nice it has dotted border. And has two columns. My problem is I want make my table header columns spanned. But I can not get any reference to the cell of my first row inside TableLayout. I guess all table are

Re: [iText-questions] Question on tablelayout.

2006-10-31 Thread Ruslan KULUBAEV
questions about iText here itext-questions@lists.sourceforge.net To: Post all your questions about iText here itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Question on tablelayout. Date: Tue, 31 Oct 2006 16:56:39 - I'm not sure what you're asking. TableLayout provides you

Re: [iText-questions] Question on tablelayout.

2006-10-31 Thread Paulo Soares
PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Question on tablelayout. Hi, I had constructed a table. Have overriden the TableLayout method. My table looks nice it has dotted border. And has two columns. My problem is I want make my table header columns

Re: [iText-questions] Question on tablelayout.

2006-10-31 Thread Paulo Soares
- Original Message - From: Ruslan KULUBAEV [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Tuesday, October 31, 2006 5:15 PM Subject: Re: [iText-questions] Question on tablelayout. one more question is I would like to create a new Table class inheriting from

Re: [iText-questions] question about the big downside for PdfWriter.

2006-10-20 Thread Tim
Mark Storer MStorer at cardiff.com writes: What you CAN do is fill out the form from the original PDF, flatten it, and then import the pre-flattened pages.   --Mark Storer   Senior Software Engineer   Cardiff.com Could you say something about your idea more clear? Or give me some

Re: [iText-questions] question about the big downside for PdfWriter.

2006-10-20 Thread Tim
Paulo Soares psoares at consiste.pt writes: Other than recreating the fields there's no easy way to do it. Paulo I really appreciate you answered my question so quickly. Here you said I need to recreate those fields. I am not sure what you really mean. Do you mean recreate those fields

Re: [iText-questions] question about the big downside for PdfWriter.

2006-10-20 Thread Paulo Soares
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Sent: Friday, October 20, 2006 7:44 AM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] question about the big downside for PdfWriter. Paulo Soares psoares at consiste.pt

Re: [iText-questions] question about the big downside for PdfWriter.

2006-10-20 Thread Mark Storer
Could you say something about your idea more clear? Or give me some code sample about that, because I am a fresher to iText, and the task is very time- critical. Actually I do not get what you mean here. You mention that flatten the external form fields and then import the

Re: [iText-questions] Question itext

2006-10-20 Thread Anton Melser
Explique-toi en français je pense, parce que là... pas trop compréhensible ! Cheers Antoine On 18/10/06, Christophe Herbert [EMAIL PROTECTED] wrote: Hello, Sorry for my english but I am french. I have a question about iText. It is possible to extract an occurence of an existing PDF and to

[iText-questions] question about the big downside for PdfWriter.

2006-10-19 Thread Tim Yang
I ever sent a question to you , but get no response. Maybe I did not say the question clearly. So I re-do it: In iText Tutorial I read: PdfWriter: generates a document from scratch, but also supports importing pages from other PDF documents. There's one big downside: all interactive

Re: [iText-questions] question about the big downside for PdfWriter.

2006-10-19 Thread Paulo Soares
Other than recreating the fields there's no easy way to do it. Paulo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Yang Sent: Thursday, October 19, 2006 9:36 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] question

Re: [iText-questions] question about the big downside for PdfWriter.

2006-10-19 Thread Mark Storer
] [mailto:[EMAIL PROTECTED]On Behalf Of Tim YangSent: Thursday, October 19, 2006 1:36 AMTo: itext-questions@lists.sourceforge.netSubject: [iText-questions] question about the big downside for PdfWriter. I ever sent a question to you , but get no response. Maybe I did not say the question

Re: [iText-questions] Question about How to install the product

2006-10-18 Thread Alexis Pigeon
Hi Carlos, On 18/10/06, Carlos Nunura Caldas [EMAIL PROTECTED] wrote: Hello I want to know more about the Itext software to use it in one of my projects. I have downloaded all the files that appeared in the web page (tar or zip) but what is the process to install those libraries? And what

[iText-questions] Question itext

2006-10-18 Thread Christophe Herbert
Hello, Sorry for my english but I am french. I have a question about iText. It is possible to extract an occurence of an existing PDF and to replace this occurence to a new to a new PDF. Thanks a lot. Chris

Re: [iText-questions] Question itext

2006-10-18 Thread Damien Drix
Hello, If you mean replace all occurences of a word with another word, the answer is no : http://itext.ugent.be/library/question.php?id=48 Best regards, Damien Drix Christophe Herbert a écrit : Hello, Sorry for my english but I am french. I have a question about iText. It is possible to

[iText-questions] Question about How to install the product

2006-10-17 Thread Carlos Nunura Caldas
Hello I want to know more about the Itext software to use it in one of my projects. I have downloaded all the files that appeared in the web page (tar or zip) but what is the process to install those libraries? And what I have to do to use this libraries in one JAVA Program … what kind of

Re: [iText-questions] question for iText:about import imported imagewhich contains form fields

2006-10-16 Thread Webber, David (NIH/OD) [C]
:[EMAIL PROTECTED] Sent: Sunday, October 15, 2006 5:11 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] question for iText:about import imported imagewhich contains form fields I have a question: is there any way that I can use to import a pdf page which contains

[iText-questions] question for iText:about import imported image which contains form fields

2006-10-15 Thread 杨 帆
I have a question: is there any way that I can use to import a pdf page which contains Acro form fields to anywhere in one page. And those fillable form fields are still fillable. Can iText support that?I ever tried to use PDFContentByte.addTemplate(..), but the output fields were missing or

Re: [iText-questions] question for iText:about import imported imagewhich contains form fields

2006-10-15 Thread Paulo Soares
iText can't do that. Paulo - Original Message - From: 杨 帆 [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Sunday, October 15, 2006 10:11 AM Subject: [iText-questions] question for iText:about import imported imagewhich contains form fields I have a question

[iText-questions] question?

2006-10-13 Thread Bossi, Mauro
With this program can i make the PDF not modifay? With this program can i make the PDF not printable? - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with

Re: [iText-questions] question?

2006-10-13 Thread Paulo Soares
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bossi, Mauro Sent: Friday, October 13, 2006 11:27 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] question? With this program can i make the PDF not modifay

[iText-questions] Question about block in PDF

2006-09-27 Thread MIARA Pascal
Hi everybody. Is it possible with i-text to define some block over PDF document (graphically), and then by coding, to fill these predefined blocks with data information. In fact, I need to inform a form and I need to print it. But I need to locate my data very precisely. Regards,

Re: [iText-questions] Question about block in PDF

2006-09-27 Thread Bruno Lowagie
MIARA Pascal wrote: Hi everybody. Is it possible with i-text to define some block over PDF document (graphically), and then by coding, to fill these predefined blocks with data information. Correct me if I am wrong, but aren't talking about PDF forms?

[iText-questions] Question

2006-09-26 Thread Jeegar Sheth
Hi Iwanted to modify a text in existing PDF document. Can i do this with iText? If yes, a sample code would be helpful. Regards Jeegar Sheth - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's

Re: [iText-questions] Question

2006-09-26 Thread Bruno Lowagie (iText)
Jeegar Sheth wrote: Hi I wanted to modify a text in existing PDF document. Can i do this with iText? Sorry: wrong question! It should be: Can I do this with PDF? An answer by Aandi Inston (one of the world's greatests PDF gurus) is in the FAQ:

[iText-questions] Question relating to appending a PDF using iText

2006-09-07 Thread Karl Nolan
Hi, Is it possible to open a PDF document and append some text (or update field) to the original PDF document. I see that there is loads of examples of writing new PDF document using PdfWriter and adding a document using a new Paragraph object. I have tried to use;PdfWriter.getInstance(document,

Re: [iText-questions] Question relating to appending a PDF using iText

2006-09-07 Thread Paulo Soares
PdfStamper does it all. Paulo - Original Message - From: Karl Nolan [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, September 07, 2006 2:33 PM Subject: [iText-questions] Question relating to appending a PDF using iText Hi, Is it possible to open a PDF

[iText-questions] question itext with margins

2006-09-01 Thread nparis62
Hello, In my application, igenerated PDF with an template XML I use itext-1.4.4.jar. At origin, I put values (10,10,10,10) for leftMargin, rightMargin, topMargin and bottomMargin of my document, soIuse the parser and the method "XmlParser.parse(document, in, tagmap);". But after this

Re: [iText-questions] question itext with margins

2006-09-01 Thread bruno
[EMAIL PROTECTED] wrote: Is The parser of this old packages not the same that one of itext-1.4.4.jar ? In one of the previous version somebody contributed some code that set the margins based on 'left', 'right', 'top', 'bottom' attributes of the root tag. If these attributes are missing, 36

Re: [iText-questions] question about splitted pdf

2006-08-16 Thread er doctor
@lists.sourceforge.net To: Post all your questions about iText here itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] question about splitted pdf Date: Mon, 14 Aug 2006 20:48:55 +0100 Some PDFs, like those created by Open Office put all the resources shared by all the pages. This is not illegal

[iText-questions] question about splitted pdf

2006-08-14 Thread er doctor
Hello, I'm working on a java program that split a pdf in different pdf. Here is my problem, all PDF that i create have nearly the same size has the original. The sample, for spliting pdf, found in the itext website has the same problem. Is there a solution ? Thanks Orlando Jacob

Re: [iText-questions] question about splitted pdf

2006-08-14 Thread Paulo Soares
] To: itext-questions@lists.sourceforge.net Sent: Monday, August 14, 2006 3:42 PM Subject: [iText-questions] question about splitted pdf Hello, I'm working on a java program that split a pdf in different pdf. Here is my problem, all PDF that i create have nearly the same size has

Re: [iText-questions] question about splitted pdf

2006-08-14 Thread Leonard Rosenthol
At 03:48 PM 8/14/2006, Paulo Soares wrote: Some PDFs, like those created by Open Office put all the resources shared by all the pages. Yeah, it's VERY annoying for processing PDFs... This is not illegal but the result is that getting a single page will fetch all the resources resulting

[iText-questions] Question itext

2006-07-31 Thread Frank
Hi, I have the followin problem:I am constructing a pdf, but I have several portions of html, that in several parts of the document i have to use a parser in this case, HtmlParser, but no work because it close the document in the first parser. How i solve this problem.Thank for any help.Frank

<    1   2   3   4   5   6   7   >