Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-17 Thread Satish_Burnwal
PROTECTED]> cc itext-questions@lists.sourceforge.net Subject Re: [iText-questions] Need to know the core part of the PDF  Generation At 08:47 AM 4/15/2005, [EMAIL PROTECTED] wrote: As you mentioned - I want to know the low level detail for the simplest case just to write some simple texts

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Leonard Rosenthol
At 08:47 AM 4/15/2005, [EMAIL PROTECTED] wrote: As you mentioned - I want to know the low level detail for the simplest case just to write some simple texts in to a PDF file.. Then you should read the PDF Reference - all the details are in there.  You will, of course, have to skip over al

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Satish_Burnwal
Lowagie <[EMAIL PROTECTED]> 04/15/2005 06:01 PM To [EMAIL PROTECTED] cc itext-questions@lists.sourceforge.net Subject Re: [iText-questions] Need to know the core part of the PDF Generation [EMAIL PROTECTED] wrote: > > Thanks Bruno for the quick reponse.. > As you sai

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread bruno
[EMAIL PROTECTED] wrote: As you mentioned - I want to know the low level detail for the simplest case just to write some simple texts in to a PDF file.. Nothing stopping me from using iText.. but I am not sure whether we can use it for free corporate license and for free redistriution license? W

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Thanks Bruno for the quick reponse.. As you said, I tried this simple code for generating the PDF: import java.io.*; public class TestPdf { public static void main(String[] args) { try { Writer fw = new FileWriter("test.pdf");

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Satish_Burnwal
ecific char encoding etc that we need to follow before writing into the PDF doc..? Thanks! Satish. Ph:91.80.2207.8602 Bruno Lowagie <[EMAIL PROTECTED]> 04/15/2005 04:57 PM To [EMAIL PROTECTED] cc itext-questions@lists.sourceforge.net Subject Re: [iText-questions] Need to kno

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Satish_Burnwal
doc. Thanks! Satish. Ph:91.80.2207.8602 Siegfried Goeschl <[EMAIL PROTECTED]> 04/15/2005 04:44 PM Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED], itext-questions@lists.sourceforge.net cc Subject Re: [iText-questions] Need to know the core part of the PDF Gene

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Though iText is open source project, I am finding a bit hard to trace out what part of the code is actually reponsible for writing in PDF file. com.lowagie.text.pdf.PdfWriter and (on a slightly higher level) com.lowagie.text.pdf.PdfDocument I suppose there would be some

[iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Satish_Burnwal
Hi, I am new to  PDF generation but I need to implement a simple component (not as rich as iText) for generating (writing) PDF documents. Though iText is open source project, I am finding a bit hard to trace out what part of the code is actually reponsible for writing in PDF file. I suppose there

Re: [iText-questions] Need to know the core part of the PDF Generation

2005-04-15 Thread Siegfried Goeschl
Hi Satish, have you considered the amount of work to be done and consequences such as maintaining your cut-down version?! Having said that a simple component can be engineered by a wrapper shielding the caller from the iText API. Cheers, Siegfried Goeschl [EMAIL PROTECTED] wrote: Hi,