[iText-questions] Re: help

2006-04-07 Thread Bruno Lowagie
Selvi K wrote: On 4/7/06, *Selvi K* <[EMAIL PROTECTED] > wrote: can u send me a sample program to Test PDF Page Names for Uniqueness.iam using windows 2000. -- selvi.k You are sending this question to the list admin instead of to the lis

[iText-questions] Re: Help!! Modified original pdf with PdfContentByte

2005-11-30 Thread Robin
Thanks a lot for your answer! After reading your link, it is now clear that I can't keep my annotations using a PdfWriter. I tried using PdfCopy and it seems to work since it keeps all my annotations. The problem is that I was also making some modifications on my original document with the conten

[iText-questions] Re: help!!!

2005-11-25 Thread Vineet Reynolds
Omar F. Rodriguez hotmail.com> writes: > > is there some kind of limitant when itext adds an image to a pdf document?, > i am making an application which uploads a GIF o JPG, and i am using itext > to create a dynamic PDF to show to the users what information has entered > and what image has

[iText-questions] Re: Help regarding PDF merging and Populating values into a PDF

2005-10-24 Thread Leonard Rosenthol
At 02:28 AM 10/24/2005, [EMAIL PROTECTED] wrote: 1. We have PDF templates whichhave to populated with values from a database dynamically. However the pdf will be a template form and only the values will be dynamically populated into the empty fields. OK. After you merge the data,

RE: [iText-questions] Re: Help regarding PDF merging and Populating values into a PDF

2005-10-24 Thread Paulo Soares
gt; To: [email protected] > Subject: [iText-questions] Re: Help regarding PDF merging and > Populating values into a PDF > > > Hi, > > We have a problem using ItextSharp in our current application > and need some sample codes and guidance from yo

[iText-questions] Re: Help regarding PDF merging and Populating values into a PDF

2005-10-23 Thread poonam . prabhu
Hi, We have a problem using ItextSharp in our current application and need some sample codes and guidance from you. Our application is a windows based vb.net application. The requirements are as follows: 1. We have PDF templates whichhave to populated with values from a database dynamically. Howe

Re: [iText-questions] Re: Help With PDFstamper

2005-09-11 Thread Paulo Soares
You must use the latest release of itextsharp (3.0.X). - Original Message - From: "catchall" <[EMAIL PROTECTED]> To: "Aravindh Ragunathan" <[EMAIL PROTECTED]>; Sent: Saturday, September 10, 2005 11:51 PM Subject: [iText-questions] Re: Help With PDFstamp

[iText-questions] Re: Help With PDFstamper

2005-09-11 Thread catchall
Aravindh Ragunathan wrote: Hi Mr.Lowagie I have been using your itext class in my .net .vb codes for pdf creation and its really handy. But i`m currently stuck at a point where i`m not able to read acro forms from an existing pdf and fill them with pdfstamper. ~m not even sure how to show the p

[iText-questions] Re: Help for PDF Generation

2005-06-30 Thread bruno
OK, now I have a little bit more time (allthough you should turn to the mailing list for faster replies). I see you haven't posted the question to the mailinglist yet, so I forward it. Bibin wrote: But the real problem with this application is that it will have to generate reports having

[iText-questions] Re: Help with PdfContentByte

2005-06-29 Thread Jed Hanes
bruno lowagie.com> writes: > > Hello again, > in attachment, you'll find your example with some corrections and the > resulting PDF. > Because I didn't see the cause of the problem immediately, I have moved > part of > the code to a separate method. I think you should do that too (including

[iText-questions] Re: Help with PdfContentByte

2005-06-28 Thread Bruno Lowagie
Bruno Lowagie wrote: I noticed two problems: 1) you added the image to the writer instead of the document. 2) you added large parts of the text outside the page area. I will send you the slightly altered code and a resulting PDF to your personal mail address. The mail to your personal mail add

[iText-questions] Re: Help required in RTF Font setting...

2004-12-24 Thread Mark Hall
On Wednesday 22 December 2004 12:46, Jithendra Ganji wrote: > Please find the below pasted codeYour soonest response is greatly > appreciated I've tried the code you attached and I get a rtf document where all style attributes are correct. What version of iText are you using and what program

[iText-questions] Re: Help

2003-09-30 Thread Bruno
I forward your mail to the mailinglist. At first sight I don't see anything wrong with it. I see this code is part of a Servlet. What does the result look like if you open the file in NOTEPAD? Maybe it's plain HTML with some error message (404, 500,...). Quoting isac coelho <[EMAIL PROTECTED]>: >

[iText-questions] RE: help

2003-06-04 Thread Tanmay Ghorai
Hi, Thanks a lot for your quick response and help. One more question for everybody can we dynamically change the title of the web page where the PDF file is displaying. Actually we want a default name which would be dynamic, when usr wants to save this PDF to his local. Regds Tanmay Kumar Ghorai

RE: [iText-questions] Re: Help needed

2002-12-04 Thread Paulo Soares
path + "," + (i + 1)); should be: trueTypeFonts.setProperty(names[i], path + "," + i); Best Regards, Paulo Soares > -Original Message- > From: Bruno [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, December 04, 2002 10:06 > To: SOBANA Rathnam > Cc: [EMAI

[iText-questions] Re: Help needed

2002-12-04 Thread Bruno
Quoting SOBANA Rathnam <[EMAIL PROTECTED]>: > Hi, > I need Traditional Chinese fonts to be printed in my report.I have got 2 > chinese fonts. > 1)Mingliu.ttc > 2)Kaiu.ttf. > > When i use Mingliu.ttc in my BaseFont it gives me an error that it cannot > be used with BaseFont.IDENTITY_H or BaseFon

[iText-questions] Re: Help me .... please

2002-08-30 Thread Bruno
Quoting ray <[EMAIL PROTECTED]>: > Hello: > I have a question about PDF file size . Please post your questions to [EMAIL PROTECTED] > /* part of my code begin */ > Document document = new Document(PageSize.A4, 50, 50, 50, 50); > PdfWriter.getInstance(document, new FileOutputStream("test.pdf")

[iText-questions] Re: help!

2002-08-22 Thread iText mail
Quoting ³ÂÕñÏè <[EMAIL PROTECTED]>: > hello: > can i use the itext to generate a pdf file like the attatchment. > i just want to draw a rectangle with the four arc corner .can i? > if can,can you give me a example? use method roundRectangle in class PdfContentByte. You find examples on how

[iText-questions] RE: help on copy document

2002-07-03 Thread Paulo Soares
Here's a complete example. Note that if you wanted to keep the crop box in the page you'd have to use PdfWriter.setCropBox(). This example makes the page size the size of the crop box. import java.io.*; import com.lowagie.text.*; import com.lowagie.text.pdf.*; public class import_pages { publ

[iText-questions] Re: help

2002-06-26 Thread Bruno Lowagie
rakesh trivedi wrote: > Sir, > > Can you help me out if itext can be used to convert Excel sheet to PDF > format. No. Or you convert the Excel sheet to CVS and write code to put everything in a (PdfP)Table, or you download POI (see http://apache.org) and you use HSSF (= Horrible SpreadSheet

[iText-questions] Re: Help!

2002-03-14 Thread bruno
Ahmed writes: > Hi! > After compiling a get this prob. > > C:\javak\java2pdf>javac Chap0102.java > No prob I get the class file. > > C:\javak\java2pdf>java Chap0102 > Exception in thread "main" java.lang.NoClassDefFoundError: Chap0102 Sounds like a JAVA 101 CLASSPATH problem. Seems like you

[iText-questions] Re: help

2002-02-19 Thread bruno
Jean-François Selber writes: > what are this options doing in the final document pdf? The names of the parameters ARE the explanation. If not please consult the PDF Reference Manual. > How can I disable printing, modify and copy document? Don't OR AllowPrinting, AllowModifyContents and AllowC

[iText-questions] Re: help

2002-02-19 Thread Jean-François Selber
      Hello,   I'm new in itext. Someone can explain me the different to all document protection (in class PdfWriter) :   AllowAssembly :   AllowCopy   AllowDegradedPrinting   AllowDegradedPrinting     AllowFillI

[iText-questions] Re: help

2002-02-19 Thread Jean-François Selber
  - Original Message - From: Jean-François Selber To: [EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 4:43 PM Subject: help   Hello,   I'm new in itext. Someone can explain me the different to all document protection (in class PdfWriter) :  

[iText-questions] Re: Help

2002-02-13 Thread bruno
[EMAIL PROTECTED] writes: > Hi all, > I need to create multiple line header. With Date and Time, Can Someone send > me a Sample code. http://www.geocrawler.com/archives/3/8175/2001/10/50/6884615/ ___ iText-questions mailing list [EMAIL PROTECTED] http

RE: [iText-questions] Re: Help With Underlining Text Using BaseFont/ContentByte

2002-01-31 Thread Paulo Soares
gt; To: [EMAIL PROTECTED] > Subject: [iText-questions] Re: Help With Underlining Text Using > BaseFont/ContentByte > > Paulo Soares writes: > > > Use ColumnText. > > OK, I overlooked that possibility. > > Concerning the new release you are planning: > *

[iText-questions] Re: Help With Underlining Text Using BaseFont/ContentByte

2002-01-31 Thread bruno
Paulo Soares writes: > Use ColumnText. OK, I overlooked that possibility. Concerning the new release you are planning: * I have discovered today that I made a mistake while uploading the HTML changes by Antoine Blanc. The CVS version couldn't be compiled anymore. I have fixed this. * There

RE: [iText-questions] Re: Help With Underlining Text Using BaseFont/ContentByte

2002-01-31 Thread Paulo Soares
Use ColumnText. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 31, 2002 8:15 > To: James Wiley > Cc: [EMAIL PROTECTED] > Subject: [iText-questions] Re: Help With Underlining Tex

[iText-questions] Re: Help With Underlining Text Using BaseFont/ContentByte

2002-01-30 Thread bruno
James Wiley writes: > Hi Bruno: > > I downloaded your iText Java-PDF library and have been going through the > tutorial. I'm looking at Chapter 10 - Absolute Positioning of Graphics and > Text. I can't figure out how to underline text when I'm using BaseFont and > ContentByte. I don't think