RE: [iText-questions] Transparant Images

2004-06-04 Thread Bill Ensley
Sorry to bother again, but image.setTransparency() is not working at all, I see no effect on the output.   Any thoughts?   Thanks Bill Ensley Bear Printing -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Bill EnsleySent: Friday, June 04, 2004

RE: [iText-questions] Transparant Images

2004-06-04 Thread Bill Ensley
Never mine, I found it Image.setTransparency(int[]);   Bill Ensley Bear Printing -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Bill EnsleySent: Friday, June 04, 2004 5:15 PMTo: iText Mail GroupSubject: [iText-questions] Transparant Imag

[iText-questions] Transparant Images

2004-06-04 Thread Bill Ensley
My Apologies, I'm sure someone has already asked this question, but I was unable to find it in the mail archives.   I have a dynamically generated ARGB Image that has some transparent areas.   When I put this image into a PDF, it loses it's transparency.   Am I missing something simple?   Th

[iText-questions] Table into Phrase into Table ?

2004-06-04 Thread Michael K
Hello all, Would you mind help me? Please. I have a Table then in one of Cell I'm adding a Phrase. I need add another Table into this Phrase. How to do it? Thank you. Best Regards. Michael. --- This SF.Net email is sponsored by the new Inst

[iText-questions] PdfStamper and CREATING NEW BOOKMARKS

2004-06-04 Thread Jason Mosher - hotmail
Hi:I am using PdfStamper to form fill some existing files.  I then need to =concatenate these files together.  My problem is this:I cannot find a way to create a NEW generated bookmark once the form is =filled and add it to the resulting file.  It seems like I can either =concatenate with bo

Re: [iText-questions] Annotations vs Notes

2004-06-04 Thread Mike Christoff
> The icon displayed in the PDF is actually user-selectable. > If you > right/control-click on ANY comment/note/annotation and then choose > "Properties" you can then pick from a selection of icons to use. > > I believe that iText uses one that simulate the "default" > Acrobat

Re: [iText-questions] Annotations vs Notes

2004-06-04 Thread Leonard Rosenthol
At 02:49 PM 6/4/2004, Mike Christoff wrote: I noticed that in Acrobat 6.0 (possibly earlier versions, but I only have 6.0) that you can add something called a "note" (looks like a yellow thought bubble). Commenting and Annotating (same thing) have been in Acrobat since version 4, though on

Re: [iText-questions] how to disable save button ?

2004-06-04 Thread Leonard Rosenthol
At 01:13 PM 6/4/2004, Franklin Neves wrote: i need to disable save button. And limit the number of prints. Somebody will know how do? You'll need to purchase a commercial digital rights solution such as the one offered by FileOpen (http://www.fileopen.com). Leonard ---

[iText-questions] Annotations vs Notes

2004-06-04 Thread Mike Christoff
I noticed that in Acrobat 6.0 (possibly earlier versions, but I only have 6.0) that you can add something called a "note" (looks like a yellow thought bubble). I looked through the itext api, but all I could find was something called an "annotation". These seem to do very similar things. In fact t

[iText-questions] how to disable save button ?

2004-06-04 Thread Franklin Neves
Hi all, i need to disable save button. And limit the number of prints. Somebody will know how do? Thansks in advance. Franklin Neves --- This SF.Net email is sponsored by the new InstallShield X. >From Windows to Linux, servers to

[iText-questions] how to disable save button ?

2004-06-04 Thread Franklin De Souza Neves
Hi all,       i need to disable save button. And limit the number of prints.   somebody will know how do?     thansks in advance. Franklin Neves

RE: [iText-questions] iText and Lotus domino

2004-06-04 Thread Paulo Soares
>From my web page at itextpdf.sf.net: Lotus Notes/Domino users with jdk 1.1 will probably need to recompile it with jdk 1.1.6 Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Rahul Khobragade > Sent: Friday, June 04, 2

[iText-questions] iText and Lotus domino

2004-06-04 Thread Rahul Khobragade
hi, I am working on Lotus Domino platform. We need to generate PDF reports on the fly. I have downloaded the required JAR files and put in appropriate domino. However when I try to compile the code I get following error : error : Invalid class file format (com.lowagie.text.Document.class), wro

RE: [iText-questions] Converting certain .TIFF Images to .PDF

2004-06-04 Thread Paulo Soares
Those tiff examples are misleading. iText now supports tiff natively just like gif, png, etc. If you want to get more than the first page see the example read_tiffs.java at itextpdf.sf.net.   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [iText-questions] Landscape Mode

2004-06-04 Thread Andrew McLaughlin
Landscape mode can be achieved for most applications, thus: Document doc = new Document( PageSize.LETTER.rotate() ); doc.add( blah ); This sets up the Document object with a Letter size but rotated 90°. However, if this causes problems of conflicts with your application you can al

Re: [iText-questions] query

2004-06-04 Thread Bruno
Quoting Andrew McLaughlin <[EMAIL PROTECTED]>: > Logically, shouldn't the API throw an Exception if an operation is done > out of sequence? :-/ > > Add the footer BEFORE document.open() In a lot of publications people DON'T want a footer on the first (title) page. Also you have to be able to ch

Re: [iText-questions] query

2004-06-04 Thread Andrew McLaughlin
Logically, shouldn't the API throw an Exception if an operation is done out of sequence? :-/ Andrew On Jun 4, 2004, at 1:04 AM, Bruno wrote: Quoting Shailendra Sinha <[EMAIL PROTECTED]>: dear sir, can tell me how can i put footer on the first page. i added footer in the document but it is not s

Re: [iText-questions] Landscape Mode

2004-06-04 Thread Woodchuck
For landscape mode you can do this: Document myDoc = null; myDoc = new Document(PageSize.LETTER.rotate(), 0, 0, 0, 0); the rotate() function will make the document from Portrait (default) mode to Landscape mode. --- Daniel Rabe <[EMAIL PROTECTED]> wrote: > Hi, is it possible to create a PDF do

[iText-questions] Landscape Mode

2004-06-04 Thread Daniel Rabe
Hi, is it possible to create a PDF document in Landscape mode with iText? The other question I have regards tables. I need to set table width and the tutorial is not clear on this issue. Can anyone help? Apart from the above questions, it's a great product ... thanks to the developers. thank y

RE: [iText-questions] PDF Annotation and Stamping

2004-06-04 Thread Paulo Soares
There are two questions here. The text annotation doesn't print because you don't have the proper flags set. the general use is:   switch (visibility) {    case HIDDEN:    field.setFlags(PdfAnnotation.FLAGS_PRINT | PdfAnnotation.FLAGS_HIDDEN);    break;    case VISIBLE_BUT_DOES_N

RE: [iText-questions] Add image once for all pages

2004-06-04 Thread Paulo Soares
In iText the images are added only once but you have to reference them in all the pages. Something like: Image img = Image.getInstance("mypic.png"); doc.add(img); doc.newPage(); doc.add(img); doc.newPage(); doc.add(img); would show the image in three pages but the image data would only be prese

RE: [iText-questions] iText to Convert Files to PDF -urgent

2004-06-04 Thread Paulo Soares
See com.lowagie.tools.encrypt_pdf. You can produce your pdf to a ByteArrayOutputStream.   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yamuna BellanaSent: Friday, June 04, 2004 6:24 AMTo: [EMAIL PROTECTED]Subject: Fw: [iText-ques

RE: [iText-questions] guidance requested for generating a pdf with dynamic data

2004-06-04 Thread Paulo Soares
For each certificate page you do what you're doing. After each page is ready, add it to PdfCopy to make all pages a single PDF. See com.lowagie.tools.concat_pdf.java for PdfCopy usage. Best Regards, Paulo Soares > -Original Message- > From: Woodchuck [mailto:[EMAIL PROTECTED] > Sent: Thu

[iText-questions] Add image once for all pages

2004-06-04 Thread Gerald Fehringer
Hello! Does the PDF format offer a possibility to add an image once only but it is still shown on all pages ? Or do we always have to add an image for each and every page (which of course increases the size of the resulting PDF file) ? Thanks in advance for your Info, Gerald. ---

Re: [iText-questions] query

2004-06-04 Thread Bruno
Quoting Shailendra Sinha <[EMAIL PROTECTED]>: > dear sir, > > can tell me how can i put footer on the first page. > i added footer in the document but it is not showing on the first page. Add the footer BEFORE document.open(). br, Bruno --

[iText-questions] PDF Annotation and Stamping

2004-06-04 Thread Enoch Chan
  Sorry about this rather long posting!  I was trying to do some kind of PDF annotation and stamping (e.g. the "Received" chop) to simulate the similar functions that can be performed through Adobe Acrobat.  I seem to be able to add some kind of annotation to the PDF file, but the result doe

[iText-questions] query

2004-06-04 Thread Shailendra Sinha
dear sir,    can tell me how can i put footer on the first page.  i added footer in the document but it is not showing on the first page.   thanks Shailendra     Shailendra Sinha ([EMAIL PROTECTED]Nagarro Software Private Limited (http://www.nagarro.com)+91-124-501-NSPL (extn. 206)Mobile: +9

Fw: [iText-questions] iText to Convert Files to PDF -urgent

2004-06-04 Thread Yamuna Bellana
Dear iText list members,      Can you please tell me whether I can read a pdf file and encrypt it and overwrite the pdf file with the same name. I just want to read the pdf file and show the user the encrypted pdf without saving it to the hard disk.   This is my code   PdfReader reader