[iText-questions] Can i rotate second page of document

2004-12-09 Thread Dmitri
Is it possiblÑ rotate one page in multi page document? --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start readin

Re: [iText-questions] postnet barcode/USPS standards

2004-12-09 Thread Paulo Soares
I believe it's according with the standards with the default size. - Original Message - From: "Rajesh V. Nerlikar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Steven D. Meyer" <[EMAIL PROTECTED]> Sent: Thursday, December 09, 2004 22:45 Subject: [iText-questions] postnet barcode/USPS

[iText-questions] postnet barcode/USPS standards

2004-12-09 Thread Rajesh V. Nerlikar
Does the iText implementation of the Postnet barcode meet all current USPS standards?  We are using the default size and bar height.

RE: [iText-questions] Different fonts in the same Paragraph

2004-12-09 Thread Rengachari, Santhi Booshan \(Booshan\), ALABS
Thank you Steve. When I added Chunks to Paragraph, every Chunk was a newline. When I added the same with Phrase, everything is good. Thanks again. -Original Message- From: Steve Appling [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 4:37 PM To: Rengachari, Santhi Booshan (Boo

Re: [iText-questions] Different fonts in the same Paragraph

2004-12-09 Thread Steve Appling
You probably need to be using Phrases (or perhaps Chunks) added to a Paragraph (or perhaps used instead of a Paragraph). See the javadoc for Phrase and Chunk. - Original Message - From: "Rengachari, Santhi Booshan (Booshan), ALABS" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursd

[iText-questions] Different fonts in the same Paragraph

2004-12-09 Thread Rengachari, Santhi Booshan \(Booshan\), ALABS
Hello List, I am new to this group. I am creating a Paragraph in different fonts, but when I do this, it breaks the paragraph into new lines. I mean every font text is displayed in new line. Can someone please help to create a Paragraph with different fonts. Thanks in advance Booshan. ---

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread javier muguruza
thanks, I appreciate that On Thu, 9 Dec 2004 17:36:39 -, Paulo Soares <[EMAIL PROTECTED]> wrote: > Hidden: > setFieldProperty("fieldname", "flags",PdfAnnotation.FLAGS_PRINT | > PdfAnnotation.FLAGS_HIDDEN, null) > > Visible: > setFieldProperty("fieldname", "flags",PdfAnnotation.FLAGS_PRINT, n

RE: [iText-questions] how to set a form field to invisible

2004-12-09 Thread Paulo Soares
Hidden: setFieldProperty("fieldname", "flags",PdfAnnotation.FLAGS_PRINT | PdfAnnotation.FLAGS_HIDDEN, null) Visible: setFieldProperty("fieldname", "flags",PdfAnnotation.FLAGS_PRINT, null) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of javier mu

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread javier muguruza
Hi Paulo, I am looking through the 1200 pdf ref and it is a nightmare for a beginner...an example would be great, so far I can imagine that to set a field to visible it would be something like stamp.getAcroFields().setFieldProperty("fieldname", "setflags", whatgoeshere, andhere); There must be s

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread javier muguruza
yeah, I was looking around at the homepage for this info as well... On Thu, 9 Dec 2004 10:59:16 -0500, Steve Cole <[EMAIL PROTECTED]> wrote: > Where can I find documation that explains the property names and property > values for AcroFields.setFieldProperty()? > > > > - Original Message --

RE: [iText-questions] how to set a form field to invisible

2004-12-09 Thread Paulo Soares
javadocs and the pdf reference for the flag values. > -Original Message- > From: Steve Cole [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 09, 2004 3:59 PM > To: Paulo Soares; javier muguruza > Cc: [EMAIL PROTECTED] > Subject: Re: [iText-questions] how to set a form field to invisi

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread Steve Cole
Where can I find documation that explains the property names and property values for AcroFields.setFieldProperty()? - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Steve Cole" <[EMAIL PROTECTED]>; "javier muguruza" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursd

RE: [iText-questions] ITEXT question

2004-12-09 Thread Paulo Soares
Use PdfStamper. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Fabrizio Brozzi > Sent: Thursday, December 09, 2004 3:21 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] ITEXT question > > I have two files PDF to be join in an unique fil

[iText-questions] ITEXT question

2004-12-09 Thread Fabrizio Brozzi
I have two files PDF to be join in an unique file PDF. For this I use the Concat_Pdf from iTEXT. Now I have need to add at final PDF a new annotation (or better) an internal link on a rectangle for to go an internal page of the final PDF. In other word I have to populate (to add) in an exist

Re[2]: [iText-questions] Who's using iText?

2004-12-09 Thread Roger Misteli
Same here. We use iText for reports as one of several export formats we support. The reports ranges from single page to several thousand pages. We use signatures, 1.5 compression, encryption and many more features and found the library to scale very well. It was Thu, 9 Dec 2004 09:14:45 -0600,

RE: [iText-questions] Who's using iText?

2004-12-09 Thread Tony . L . Reller
We are using it in our reporting product to create financial reporting for our commercial customers. The reports range from a few pages to hundreds of pages. Some reports we allow linking from a summary section to a detail portion of the reports. Other reports we have links to allow the use to retr

RE: [iText-questions] how to set a form field to invisible

2004-12-09 Thread Paulo Soares
No need for that, see AcroFields.setFieldProperty(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Steve Cole > Sent: Thursday, December 09, 2004 2:48 PM > To: javier muguruza > Cc: [EMAIL PROTECTED] > Subject: Re: [iText-questions] how to set

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread Steve Cole
This is a sample of Java code that adds Javascript to a fillable PDF to change some fields to read only. Making them hidden would work the same way. // Vector readOnlyFields contains the names of fields I want to be read only boolean first = true; StringBuffer sb = new StringBuff

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread javier muguruza
Thanks for the answer Steve, is there any example of using js this way? On Thu, 9 Dec 2004 09:35:05 -0500, Steve Cole <[EMAIL PROTECTED]> wrote: > If iText can't directly change the field property, you can always use iText > to add a Javascipt to the PDF that will change the field property hidde

Re: [iText-questions] how to set a form field to invisible

2004-12-09 Thread Steve Cole
If iText can't directly change the field property, you can always use iText to add a Javascipt to the PDF that will change the field property hidden to true. - Original Message - From: "javier muguruza" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 09, 2004 9:14 AM S

[iText-questions] how to set a form field to invisible

2004-12-09 Thread javier muguruza
Hi, I have started to use itext, some things are tried are easy with the examples, others, I cannot see how I could achieve them, I cannot find any doc about them. I have a form inside a pdf, and I want to set a field from that form to be visible programatically. How can I do that? Once I find ou

RE: [iText-questions] AcroFields.setFields perfomance issues

2004-12-09 Thread Paulo Soares
He may have something there. He's not skipping the appearance generation, just the existing field parameter parsing to create the TextField. > -Original Message- > From: Leonard Rosenthol [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 09, 2004 9:56 AM > To: "Robert Müller"; Paulo S

Re: [iText-questions] servlets and pdf

2004-12-09 Thread Steve Cole
Using Servlets or Java Server Pages would be the most straight forward method of using a Java library, like iText, to create PDFs on a web server. It might be possible to make calls from some other scripting language, supported on your server, to Java. It depends on the scripting language. I've se

RE: [iText-questions] AcroFields.setFields perfomance issues

2004-12-09 Thread Paulo Soares
It may work as only the appearance is generated. Do you have any before/after timings? > -Original Message- > From: "Robert Müller" [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 09, 2004 11:18 AM > To: Paulo Soares; [EMAIL PROTECTED] > Subject: RE: [iText-questions] AcroFields.set

RE: [iText-questions] AcroFields.setFields perfomance issues

2004-12-09 Thread "Robert Müller"
with my test-form (125 fields) and without using the helper every call of formFields.setFields(xfdfData) lasts about 5 seconds (between 4500 and 5500 msecs.) (called from java-stored-procedure in database on a 2ghz p4) with the helper every call after the first finishes in about 100 msecs. i notice

RE: [iText-questions] AcroFields.setFields perfomance issues

2004-12-09 Thread Leonard Rosenthol
At 06:18 AM 12/9/2004, Robert Müller wrote: i tried AcroFields.setGenerateAppearances(false) but as i have to "flatten" the form-fields and concatenate the generated pdfs i think this won't work for me. Correct. You need to generate the appearance. or is the "content" of a text field more

FW: [iText-questions] servlets and pdf

2004-12-09 Thread Gupta_Sachin
Title: FW: [iText-questions] servlets and pdf -Original Message- From: Gupta_Sachin Sent: Thursday, December 09, 2004 4:54 PM To: 'John Houle' Subject: RE: [iText-questions] servlets and pdf Hi can u pls help me out .. that I am using Itext' rtf api I want a horizontal line

AW: [iText-questions] font to a Cell data

2004-12-09 Thread Mahler Frank
> Could someone kindly help me as to how to change the > font in the table->Cells. The default font that is set, > for the cells is Arial and I need to change to Times > New Roman. As long as I understand it, not the cell has a font, but the Chunk, Phrase or Paragraph you write into the cell!

RE: [iText-questions] Right margin shift

2004-12-09 Thread Paulo Soares
If I remember well there was a problem with indentation propagation across pages. Your code is probably correct. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Thursday, December 09, 2004 10:32 AMTo: [EMAIL PROTECTED]Subject: [iText

RE: [iText-questions] AcroFields.setFields perfomance issues

2004-12-09 Thread "Robert Müller"
hi, i tried AcroFields.setGenerateAppearances(false) but as i have to "flatten" the form-fields and concatenate the generated pdfs i think this won't work for me. i thought that i considered that "... the content will be different depending on the data" because in getAppearanceCheckKnown i only sk

RE: [iText-questions] question regarding the itext component

2004-12-09 Thread Paulo Soares
itextsharp is based on a very old version when chickens still had teeth and gif support was incomplete. The solution is to use itextdotnet or do the port of the gif support from java to c#. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rémy BURSent: Wednesday

RE: [iText-questions] AcroFields.setFields perfomance issues

2004-12-09 Thread Paulo Soares
I don't see how your approach can work. The formatting of a text field appearance may not change but the content will be different depending on the data. Appearance generation is an expensive and complicated process and many tools out there don't even bother to do it. If you really need the appe

Re: [iText-questions] Rtf - table header

2004-12-09 Thread Mark Hall
On Wednesday 08 December 2004 17:42, Lapin Bleu wrote: > Why the endHeaders() for defining row table header is not implemented > for RtfTable ? > Will it be it in the future? I'm not quite sure why this does not work, I was under the impression that it should. I'll look into the problem, but not b

[iText-questions] question regarding the itext component

2004-12-09 Thread Rémy BUR
Hi, I am using the itext component to generate Pdf files for a .Net plateform but the following error occures when I am trying to insert a GIF file : “banner.gif is not a supported GIF-file (the image separator ’0x2c’ is not found after reading the color table’”. Could you please explain

[iText-questions] servlets and pdf

2004-12-09 Thread John Houle
Is the only way to create pdf's on a webserver is through the use of servlets? I can locally create a pdf, but on a web server I cannot create the pdf. --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds

Re: [iText-questions] Who's using iText?

2004-12-09 Thread Dirk Wellmann
Hi, we're using iText to send Orders,Invoices and so on as PDF-Attachment in the ERP-Solution ifaxOPEN. Regards Dirk --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users

Re: [iText-questions] Who's using iText?

2004-12-09 Thread Bruno
Quoting iText User <[EMAIL PROTECTED]>: > My company is considering using iText to produce insurance enrollment PDF > forms from their website. > > My manager is interested in knowing what other companies are using iText > before we spend time converting our current PDF solution to iText. > >