Re: [iText-questions] midi files into PDF

2007-02-10 Thread François Sénéquier
Hi, I use the "createFileAttachment" as you said so I have an icon following by a title (txt1) and a description (txt2) when the cursor is placed on the icon. The problem is that when I click on the icon I have the following message "There was a problem reading the document (14)"... The follo

[iText-questions] RTF enhancement

2007-02-10 Thread Bruno Lowagie
Hello Mark, somebody posted some new RTF functionality on a French forum; maybe it could be handy to integrate it into iText (when and if you have the time): http://www.developpez.net/forums/showthread.php?p=1747475 best regards, Bruno /* * Copyright 2004 Paulo Soares * * The contents of this f

Re: [iText-questions] midi files into PDF

2007-02-10 Thread Paulo Soares
Use PdfAnnotation.createFileAttachment(). This is explained in the chapter 15 of the book. Paulo - Original Message - From: "François Sénéquier" <[EMAIL PROTECTED]> To: Sent: Saturday, February 10, 2007 3:19 PM Subject: Re: [iText-questions] midi files into PDF Thank you, So I try d

Re: [iText-questions] midi files into PDF

2007-02-10 Thread François Sénéquier
Thank you, So I try do use the following code : chemin = "."; spec = PdfFileSpecification.fileExtern(writer, chemin); writer.addFileAttachment(nom, spec); So the file is attached in the PDF, but now, how to put a text with a link on this embedded file ? I can get the reference of this embedded

[iText-questions] com.lowagie.examples.general.copystamp.Register

2007-02-10 Thread Rémi Guilbert
Hi I try to run the com.lowagie.examples.general.copystamp.Register.java example, but it's doesn't work fine. I use itext-1.4.8.jar. // we create a reader for a certain document PdfReader reader = new PdfReader("C:\\Temp\\Itext\\SimpleRegistrationForm.pdf");

Re: [iText-questions] remove images

2007-02-10 Thread amudha
Hi, using the below listed code i can only replace the first image of each and every page of a PDF file.how to replace all the images in a pdf file. //code import com.lowagie.text.*; import com.lowagie.text.pdf.PdfAnnotation; import java.io.FileOutputStream; import com.lowagie.text.pdf.Pd

[iText-questions] Fun with error messages

2007-02-10 Thread Bruno Lowagie
I saw this reply on comp.text.pdf Matti has the right kind of humor ;-) Original Message Subject: Re: Conflicts between Acrobat 7 and Microsoft Outlook Express 6 Date: Sat, 10 Feb 2007 11:08:22 GMT From: Matti Vuori Newsgroups: comp.text.pdf "Ralf Koelbach" wrote in news: > I´ve

Re: [iText-questions] Page Labels

2007-02-10 Thread Bruno Lowagie
Dean Krueger wrote: > Great news thanks for all your help! When will iText 2 be released? The release date entirely depends on you all. I had scheduled yesterday to update the changelog and write some documentation, but I had to spend the whole day answering questions. You should all thank Actuat

Re: [iText-questions] com.lowagie.examples.general.copystamp.Register

2007-02-10 Thread Bruno Lowagie
Rémi Guilbert wrote: > java.lang.VerifyError: This is not an iText related problem. Please Google for java.lang.VerifyError, and you'll find the answer. > I don't know what is wrong, it's all your example files. They all work fine for me. Saying the example doesn't work is misinformation. You s

Re: [iText-questions] itext

2007-02-10 Thread mister bean
Place the full name of the itext jar file into your classpath. That should solve it. If you're using an IDE, most of them have a setting/dialog where you can specify the external libraries you're using. Add the iText library to that list and you should be good to go. ---Andrew Binstock Michael

[iText-questions] midi files into PDF

2007-02-10 Thread François Sénéquier
Hello, Is it possible to put midi files directly into a PDF generated with iText ? The purpose is to have just one PDF file with a lot of midi files inside and to put links into the PDF to those midi files, then clicking on a link should play the associated midi file... Thanks ---

[iText-questions] com.lowagie.examples.general.copystamp.Register

2007-02-10 Thread Rémi Guilbert
Hi I try to run the com.lowagie.examples.general.copystamp.Register.java example, but it's doesn't work fine. I use itext-1.4.8.jar. // we create a reader for a certain document PdfReader reader = new PdfReader("C:\\Temp\\Itext\\SimpleRegistrationForm.pdf");

Re: [iText-questions] midi files into PDF

2007-02-10 Thread Paulo Soares
A file attachment should be enough. Paulo - Original Message - From: "François Sénéquier" <[EMAIL PROTECTED]> To: Sent: Saturday, February 10, 2007 9:18 AM Subject: [iText-questions] midi files into PDF > Hello, > > Is it possible to put midi files directly into a PDF generated with i

[iText-questions] midi files into PDF

2007-02-10 Thread François Sénéquier
Hello, Is it possible to put midi files directly into a PDF generated with iText ? The purpose is to have just one PDF file with midi files inside and to put link into the PDF for each midi file. Then to click on the link should play the associated midi file... Thanks -