Re: [iText-questions] Can I embed Movies, Flash, etc using iText?

2004-11-10 Thread Tom Groves
Title: Re: [iText-questions] Can I embed Movies, Flash, etc using iText? -- LIST COPY – forgot to include in cc! Paulo, Thanks very much for that – only actually just saw your reply! I’ve done little playing about with this method this morning and there’s a couple of things that I’d like to a

[iText-questions] Merging 2 pdf documents

2004-11-10 Thread Venkat Pabbati
Hello I have a requirement in my curret project that there is an existing pdf document, I will have to add few lines and an image to the start of the exisitng document. Also will have to add some text at the end of the document. If I use 'PdfCopy' I am having the content added is shown in one diff

Re: [iText-questions] Print image A4

2004-11-10 Thread Paulo Soares
http://www.lowagie.com/iText/tutorial/ch06.html#scaling - Original Message - From: "Informazioni - R Progetti" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 10, 2004 17:49 Subject: [iText-questions] Print image A4 Goodmorning, I have a scanned jpeg image in a

[iText-questions] Print image A4

2004-11-10 Thread Informazioni - R Progetti
Goodmorning,    I have a scanned jpeg image in a byte array too big for an A4 or letter page. How can I reduce this image and print it on a pdf file?   e.g. I've an image 1700x2340 pixel (it was scanned to 200 dpi) when I pint it on pdf the image was truncate.   I use the following code   

Re: [iText-questions] Lines appearing all bold or all regular

2004-11-10 Thread Robert Bateman
This sounds like a viewer problem. As a linux user by day, I have seen many PDF files that don't display correctly. Switching to a different PDF viewer can sometimes resolve the problem. What viewer and version is your customer using? Bob On Wed, 2004-11-10 at 10:27, David Thielen wrote: > Hi

[iText-questions] Re: How to add a byte array to the document

2004-11-10 Thread Mark Hall
Hi You will have to let the RtfWriter write to the file, then open the file and insert the blob at the position you want it in the document. Due to certain aspects of the rtf format the RtfWriter buffers the content of the complete Document before writing it to the OutputStream. Anything you wr

[iText-questions] New release itext-paulo-141

2004-11-10 Thread Paulo Soares
Changes in itext-paulo-141 (2004-11-10) - all the current CVS changes - fixed a bug in PdfStamper with form flattening and fields added - PdfStamper will keep the acroform even if flattening. The acroform can also be used by other annotations to keep the resources - added

[iText-questions] How to add a byte array to the document

2004-11-10 Thread srinivasu . l . vempuluru
Hi, I need to add a byte array which i get from a blob to the document. I used the following sample code. It is showing some metadata String fileName = "c:\\alogs\\Test.rtf"; // allBytesInBlob is a byte array to hold the blob info byte[] allBytesInBlo

RE: [iText-questions] text over image

2004-11-10 Thread Paulo Soares
It's trivial to create such PDF. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Paul Hardiman > Sent: Wednesday, November 10, 2004 1:21 PM > To: '[EMAIL PROTECTED]' > Subject: [iText-questions] text over image > > Hello. > I need a tool that c

[iText-questions] Merge FDF and PDF

2004-11-10 Thread Tracy Sawaya
Hello, Our company has recently started using iText in some of its needs. It has worked very weel for us. Now, however, we are facing some difficulties with a new requirement. We are emailing clients some pdf pages generated with iText. The pages contain tables and account information mostly. W

[iText-questions] Lines appearing all bold or all regular

2004-11-10 Thread David Thielen
Hi; This is probably not an iText issue but maybe someone here has an idea. One of our customers (and only one) has a problem when running on linux (and only on linux). Each line of text is either all bold or no bold (the original text is regular and bold). The pdf file is created using Content

RE: [iText-questions] tables in tables

2004-11-10 Thread Paulo Soares
You must use the version at http://itextpdf.sf.net or wait a couple of days until that version goes into the official release. From: John Sims [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 2:33 PMTo: Paulo Soares; [EMAIL PROTECTED]Subject: Re: [iText-questions]

Re: [iText-questions] tables in tables

2004-11-10 Thread John Sims
There is no setExtendLastRow method  in any of the itext classes. I'm using 1.02b>>> "Paulo Soares" <[EMAIL PROTECTED]> 11/9/2004 5:32:15 PM >>> Usage:PdfPCell cell = new PdfPCell();cell.setPadding(0);table.setWidthPercentage(100);table.setExtendLastRow(false);cell.addElement(table);- Original

RE: [iText-questions] Page Transitions

2004-11-10 Thread Paulo Soares
See the example transition.java at http://itextpdf.sf.net. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Jack Kada > Sent: Wednesday, November 10, 2004 10:54 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Page Transitions > > Develop

[iText-questions] text over image

2004-11-10 Thread Paul Hardiman
Hello. I need a tool that can present an image with text over the top of it. The end result would be a form filled out as if a typewriter were used. Is this the right place? Does such an application already exist? Thanks. Regards, Paul Hardiman 813-273-3042

Re: [iText-questions] what ver of iText?

2004-11-10 Thread Paul Hastings
Paulo Soares wrote: > Document.getVersion() duh ;-) thanks. --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database on Linux. http://ads.osdn.com/?a

[iText-questions] Page Transitions

2004-11-10 Thread Jack Kada
Developers, I serached high and low. Regarding page transitions in acrobat. Can iText support this? This allows a PDF to become a presentation and prevents having to use PowerPoint. Any ideas - even if it means writing the text to stream. Many Thanks ___

RE: [iText-questions] Java nio

2004-11-10 Thread Paulo Soares
Why using NIO would be faster? In your tests you state that it's 10 times slower. NIO only has advantages if reading asynchronosly mainly to save threads. iText doesn't fit in that model. iText is also supposed to work with other jdk versions below 1.4. > -Original Message- > From: [EMAI

[iText-questions] Java nio

2004-11-10 Thread Martin Resch (adaptions GmbH)
Hello, in a PDF i have to include a lot of images. I tried the NIO-package to create the bytearray myself and then instance the Image-object like this: FileChannel roChannel = new RandomAccessFile(url, "r").getChannel(); ByteBuffer roBuf = roChannel.map(FileChannel.MapMode.READ_ONLY, 0, (

RE: [iText-questions] what ver of iText?

2004-11-10 Thread Paulo Soares
Document.getVersion() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Paul Hastings > Sent: Wednesday, November 10, 2004 7:13 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] what ver of iText? > > dumb question, how can i programmatical

RE: [iText-questions] Re: New release itext-paulo-140

2004-11-10 Thread Paulo Soares
You should ask that to whoever did the port. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Wahaj > Sent: Wednesday, November 10, 2004 7:15 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Re: New release itext-paulo-140 > > Hi All, >

[iText-questions] Re: New release itext-paulo-140

2004-11-10 Thread Wahaj
Hi All, Do we have a C# version of this i.e. itext-paulo-140 (2004-11-06). If not when should it be expected. Regards, Wahaj "Paulo Soares" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Changes in itext-paulo-140 (2004-11-06) > > - AcroFields.setFieldProperty() has the new pr

[iText-questions] Printing in Background in W98

2004-11-10 Thread Caballero Caballero, Jose
  I am trying to print a pdf file in background. It works perfectly in Windows XP but it doesn’t work in Windows 98.  In this System Operation I call :   Runtime.getRuntime().exec("command /c start acrord32 /t /p /h \"" + SalidaPdfTemp.getAbsolutePath() + "\" \"" + _service.getName() +