[iText-questions] iText question about PdfTable

2015-05-19 Thread Haddy, Diane E
Hello I am very new to iText and still in the learning mode. I have downloaded itextpdf - 5.5.6 jar file in eclipse. I have the iText api library too to reference too. My question is this: When I try to instantiate the PdfTable like below PdfTable table = new PdfTable(3); I receive an

Re: [iText-questions] iText question about PdfTable

2015-05-19 Thread Nicolas Conde
http://java-white-box.blogspot.com.ar/2014/03/itext-pdfptable-como-agregar-una-tabla.html plz view this On Tue, May 19, 2015 at 12:59 PM, Haddy, Diane E diane-ha...@uiowa.edu wrote: Hello I am very new to iText and still in the learning mode. I have downloaded itextpdf – 5.5.6 jar file

Re: [iText-questions] Itext Question

2012-05-07 Thread Amedee Van Gasse
On Wed, May 2, 2012 09:29, supun ganesh wrote: Hi Sir, I am C# Developer. i am stuck with reading PDF Image.i try lot of ways. I want to read PDF image and capture text. Hi Supun, You didn't actually ask a real question. First, do you have the iText book? The answer may be in there. Second,

Re: [iText-questions] Itext Question

2012-05-07 Thread Alberto León
it sounds like OCR The Book and the website of iText say clearly iText is not an OCR. Sorry supun, I suppose this is not the way. 2012/5/7 Amedee Van Gasse amedee-it...@amedee.be On Wed, May 2, 2012 09:29, supun ganesh wrote: Hi Sir, I am C# Developer. i am stuck with reading PDF Image.i

[iText-questions] [iText-Question] Problem With Setting Properties of PDF Document

2011-08-30 Thread Tejraj Singh
Hi, I am trying to set the PDF properties (Author, Title, Subject and Keywords) using following code snippet: PdfReader pdfReader = new PdfReader(inputPDFFilePath); stamper = new PdfStamper(pdfReader, new FileOutputStream(outFilePath));

Re: [iText-questions] [iText-Question] Problem With Setting Properties of PDF Document

2011-08-30 Thread Leonard Rosenthol
@lists.sourceforge.netmailto:itext-questions@lists.sourceforge.net Subject: [iText-questions] [iText-Question] Problem With Setting Properties of PDF Document Hi, I am trying to set the PDF properties (Author, Title, Subject and Keywords) using following code snippet: PdfReader pdfReader = new

Re: [iText-questions] [iText-Question] Problem With Setting Properties of PDF Document

2011-08-30 Thread Tejraj Singh
As I mentioned in code snippet, I set keywords as value for 'Keywords' property. From: Leonard Rosenthol [mailto:lrose...@adobe.com] Sent: Tuesday, August 30, 2011 9:58 PM To: Post here Subject: Re: [iText-questions] [iText-Question] Problem With Setting Properties of PDF Document What value

Re: [iText-questions] [iText-Question] Problem With Setting Properties of PDF Document

2011-08-30 Thread Edward W. Rouse
with the Viewer you are using to open the document. From: Tejraj Singh [mailto:tejr...@brickred.com] Sent: Tuesday, August 30, 2011 12:39 PM To: Post all your questions about iText here Subject: Re: [iText-questions] [iText-Question] Problem With Setting Properties of PDF Document As I mentioned

[iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Tejraj Singh
Hi Everyone, I am trying to add an image (using iText 5.1.1 version) on an existing PDF, but unable to do so. Code passes with out any error but the image is not added to PDF. Following is the code snippet: FileInputStream fis = new FileInputStream(inputFilePath);

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread 1T3XT BVBA
On 25/08/2011 14:09, Tejraj Singh wrote: Please let me know what I am doing wrong here. You are assuming that the lower-left corner of the page is 0,0. See http://support.itextpdf.com/node/106 and http://support.itextpdf.com/node/105 bullet 2.

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Tejraj Singh
-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help On 25/08/2011 14:09, Tejraj Singh wrote: Please let me know what I am doing wrong here. You are assuming that the lower-left corner of the page is 0,0. See http://support.itextpdf.com/node/106 and http

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread 1T3XT BVBA
On 25/08/2011 16:21, Tejraj Singh wrote: As mentioned under http://support.itextpdf.com/node/105;, I checked the value of getLeft() and getBottom() and both returns 0.0 Then maybe the image doesn't show up because of the convoluted way you are trying to achieve this. Why are you using a table

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Tejraj Singh
. From: 1T3XT BVBA [mailto:i...@1t3xt.info] Sent: Thursday, August 25, 2011 8:04 PM To: Post all your questions about iText here Subject: Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help On 25/08/2011 16:21, Tejraj Singh wrote: As mentioned under http

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread 1T3XT BVBA
On 25/08/2011 16:39, Tejraj Singh wrote: Just a note here, previously we were using very old version of iText (i.e 1.3 version) and it was working fine. However this not working when upgraded to version 5.1.1. That's odd. Do you have a standalone example we can use to reproduce the problem?

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Balder VC
On 25/08/2011 17:05, Tejraj Singh wrote: Please confirm if you have received the attachment, as I received notification from ' postmas...@autonomy.com mailto:postmas...@autonomy.com' that attachment is removed. If this the case please find below the code and attached PDF and image file.

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Balder VC
Have you tried with itext 5.1.2 ? On 25/08/2011 17:11, Tejraj Singh wrote: This is strange, the image is there in the PDF you attached. Please find attached the final PDF generated at my end, it does not show the image. Any idea what could be the reason. I am working with Adobe Acrobat 9

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Leonard Rosenthol
@lists.sourceforge.net Date: Thu, 25 Aug 2011 08:11:06 -0700 To: Post here itext-questions@lists.sourceforge.netmailto:itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help This is strange, the image

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Balder VC
I think the cause could be Bugfix: The height of the |Image| wasn't taken into account when creating a |PdfPCell| with an |Image|. (This bug was introduced in version 5.1.1, due to the List symbol attributes were ignored fix) @see http://itextpdf.com/history/?branch=51node=512 On 25/08/2011

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Tejraj Singh
Yes, it worked with iText 5.1.2 Thanks for the support. From: Balder VC [mailto:li...@redlab.be] Sent: Thursday, August 25, 2011 8:49 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help Have you tried

Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

2011-08-25 Thread Tejraj Singh
5.1.1, due to the List symbol attributes were ignored fix) -Regards, Tejraj From: Leonard Rosenthol [mailto:lrose...@adobe.com] Sent: Thursday, August 25, 2011 9:01 PM To: Post here Subject: Re: [iText-questions] [iText-Question] Not Able To Add Image to Existing PDF - Please Help

[iText-questions] iText Question - Enabling saving form data for user

2010-09-23 Thread Raghu Madiraju
Hi, Can we enable the saving form data rights to user for the PDF we are creating by iText? If so, can you please let me know, how we can do this? Thanks in advance! Raghu -- Nokia and ATT present the 2010 Calling All

Re: [iText-questions] iText Question - Enabling saving form data for user

2010-09-23 Thread 1T3XT info
On 23/09/2010 14:27, Raghu Madiraju wrote: Hi, Can we enable the saving form data rights to user for the PDF we are creating by iText? If so, can you please let me know, how we can do this? Yes, purchase a copy of Adobe Acrobat and you can reader enable the form created with iText. -- This

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-16 Thread Harri Virtala
Aihe: Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures On 16/09/2010 5:32, Harri Virtala wrote: the library still generates some unique ID's to the document based on system time This is how it SHOULD be. Apart from the date

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-16 Thread 1T3XT info
On 16/09/2010 7:56, Harri Virtala wrote: Hello, I understand your comment, but I have to point out that our intention is not to re-invent the wheel in electronic signing Yes, you are. I hope Leonard will second me. but to ease up the signing process. I fail to see why you think real

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-16 Thread mkl
Harri, harriv wrote: our intention is not to re-invent the wheel in electronic signing but to ease up the signing process. I.e. how users can create contract signign requests, find which users are are legally allowed to represent different companies and of course finally sign the conracts.

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-16 Thread 1T3XT info
On 16/09/2010 9:20, mkl wrote: You might consider applying a certification signature yourself to the initial document distributed to the other users disallowing PDF viewers to do any changes at all. IMO, that's both the easiest and the best solution, but from the initial post, I assumed that

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-16 Thread mkl
1T3XT info wrote: You might consider applying a certification signature yourself IMO, that's both the easiest and the best solution, but from the initial post, I assumed that the OP rejected this solution. (Maybe that was a misinterpretation.) I'm not sure my interpretation of the OP's

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-16 Thread kuehne
for the signature-related stuff and you should focus on things like the PAdES support ... Greetings Andreas - original Nachricht Betreff: Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures Gesendet: Do, 16. Sep 2010 Von: mklm

[iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-15 Thread Harri Virtala
Dear all, Could you help me or give advice with the following problem? We are developing a digital signature service, where our customers can register, identify themselves and sign PDF documents. The signing is technically implemented by appending a generated signature page at the end of PDF

Re: [iText-questions] Itext / question about hash calculation from plain PDF files without digital signatures

2010-09-15 Thread 1T3XT info
On 16/09/2010 5:32, Harri Virtala wrote: the library still generates some unique ID's to the document based on system time This is how it SHOULD be. Apart from the date in the metadata, there's also a unique ID that is added every time a PDF is generated from scratch. Is there a way to

Re: [iText-questions] iText question regarding one tutorial

2010-06-24 Thread 1T3XT info
vallentin...@gmail.com wrote: Can you please tell me where can I find the rest of this tutorial? Because the link in the pdf does not work anymore. I needed asap, please, if you can help me I would really appreciate it The tutorial was removed after the publication of the first book (2007).

[iText-questions] IText question

2009-08-26 Thread Yang, Tao
Hi Everyone, I am a system analyst from Alberta blue cross, and I am currently using your IText lib. I have some questions/troubles while using your lib. Are the following implementations able to be done by using IText?(all of the questions are dynamically editing the existing

Re: [iText-questions] IText question

2009-08-26 Thread 1T3XT info
Yang, Tao wrote: I have some questions/troubles while using your lib. Are the following implementations able to be done by using IText?(all of the questions are dynamically editing the existing pdf file) Most of your questions are impossible in traditional PDF. In other words: it doesn't

[iText-questions] iText question

2009-06-16 Thread Shashikant Kulkarni
Hi, I am new to iText and trying to use it. I am stuck at one place and don't know how to proceed. I tried to google it did not get any answer. Please see attached file for my requirement. How can I fulfill the requirement? Any help would be greatly appreciated. Thanks and regards,

Re: [iText-questions] iText question

2009-06-16 Thread 1T3XT info
Shashikant Kulkarni wrote: Hi, I am new to iText and trying to use it. I am stuck at one place and don't know how to proceed. I tried to google it did not get any answer. Please see attached file for my requirement. How can I fulfill the requirement? I don't understand the image. Do

Re: [iText-questions] iText question

2009-06-16 Thread SHASHIKANT.KULKARNI
Hi, Thanks for the reply. Sorry for creating confusion. Now I have updated the attached image. Please have a look at iText_Req_updated.jpg. Can you point me to some sample code or can you share some sample code which I can try and see. Thanks, Shashikant

Re: [iText-questions] iText question

2009-06-16 Thread 1T3XT info
SHASHIKANT.KULKARNI wrote: Hi, Thanks for the reply. Sorry for creating confusion. Now I have updated the attached image. Please have a look at iText_Req_updated.jpg. Can you point me to some sample code or can you share some sample code which I can try and see. That's not possible

Re: [iText-questions] iText question

2009-06-16 Thread SHASHIKANT.KULKARNI
I understood that it's not possible Out-of-the-box but can you point me to some sample code or can you share some sample code? Thanks Shashikant 1T3XT info wrote: SHASHIKANT.KULKARNI wrote: Hi, Thanks for the reply. Sorry for creating confusion. Now I have updated the attached image.

Re: [iText-questions] iText question

2009-06-16 Thread 1T3XT info
SHASHIKANT.KULKARNI wrote: I understood that it's not possible Out-of-the-box but can you point me to some sample code or can you share some sample code? No. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info

Re: [iText-questions] iText question

2008-12-06 Thread Kevin Day
--- From:mister bean [EMAIL PROTECTED] To:itext-questions@lists.sourceforge.net Cc: Date:Fri, 5 Dec 2008 11:33:42 -0800 (PST) Subject:Re: [iText-questions] iText question The broad answer to your question is iText can pull apart a PDF into itselements, but that probably won't

[iText-questions] iText question

2008-12-05 Thread guitar
Please help if you can answer this question. I need iText for a specific purpose. I need to pick apart PDF documents and analyze the content of a PDF for possibly unintentionally included sensitive information. I need to find an API that has a complete set of packages/classes which will

Re: [iText-questions] iText question

2008-12-05 Thread mister bean
The broad answer to your question is iText can pull apart a PDF into its elements, but that probably won't solve your probem. PDF files do not necessarily contain text in a sequential order. The text can be written as one glyph (letter) at one point and then the remaining characters as a series

Re: [iText-questions] IText question

2007-11-20 Thread Bruno Lowagie (iText)
[EMAIL PROTECTED] wrote: Hello, I am wondering if IText can convert a Postscript file to a PDF file. I will be using Java to do this, if possible. We had some EPS to PDF code in one of the older versions of iText, but that part was removed because of an issue with license ambiguity:

[iText-questions] IText question

2007-11-19 Thread Brett . Sutherland
Hello, I am wondering if IText can convert a Postscript file to a PDF file. I will be using Java to do this, if possible. Any feedback would be appreciated. Thanks - Brett * This communication, including attachments, is

[iText-questions] Itext question: Space between text lines

2007-10-11 Thread Branko J
Hello! I'm using iText about 2 month. Now i have one design problem. How can i change space between text lines. If i use font size smaller, than is also space between lines smaller. But i want this space minimized more. How can i do this? Thank you for answer. Best regard Branko

[iText-questions] []Itext question] add background to a PDF page ?

2007-03-29 Thread Morissette Laurent
Hello, My question is fairly simple ;) Can I add a backgroud (Color or image) to a PDF document page ? not all the pages) using Itext ? Thanks in adavance for your help ;) - Take Surveys. Earn Cash. Influence the Future

Re: [iText-questions] iText question answered

2007-01-29 Thread Bruno Lowagie (iText)
Arne Venstad wrote: I have experimented a little bit with the PdfPTable, PdfPCell and the HTMLWorker.parseToList. I can report that this has been successful with a sample HTM-file created by the tiny_mce editor! There are a couple of unsupported entities in our sample file: The HTML

Re: [iText-questions] iText question answered

2007-01-29 Thread Bruno Lowagie
Bruno Lowagie (iText) wrote: The entities you are referring too are present in the class com.lowagie.text.Entities, but I don't think they were implemented in HTMLWorker (I am forwarding this to the mailing list so that somebody can correct me if I'm wrong). I immediately have to correct

Re: [iText-questions] iText question answered

2007-01-29 Thread Paulo Soares
12:33 PM To: Arne Venstad; Post all your questions about iText here Subject: Re: [iText-questions] iText question answered Arne Venstad wrote: I have experimented a little bit with the PdfPTable, PdfPCell and the HTMLWorker.parseToList. I can report that this has been successful

[iText-questions] [Itext#] Question about concatenation and Bookmarks

2006-12-15 Thread Campa
Hi all, I need to concatenate some pdf, they got some bookmarks inside, i'm using the http://itextsharp.sourceforge.net/examples/Concat.cs example, but it missing the bookmarks management. Can someone help me about this problem?

Re: [iText-questions] [Itext#] Question about concatenation andBookmarks

2006-12-15 Thread Paulo Soares
: [EMAIL PROTECTED] on behalf of Campa Sent: Fri 15-Dec-06 14:47 To: Post all your questions about iText here Subject: [iText-questions] [Itext#] Question about concatenation andBookmarks Hi all, I need to concatenate some pdf, they got some bookmarks inside, i'm using the http

[iText-questions] iText Question

2006-09-19 Thread Patrick
Hi,I am using iText for creating PDF files. How do I set the font for the table cells or for the whole document.I have no problem with paragraphs-- Kind Regards,Patrick M - Take Surveys. Earn Cash. Influence the Future of IT

Re: [iText-questions] iText Question

2006-09-19 Thread Bruno Lowagie
Patrick wrote: Hi, I am using iText for creating PDF files. How do I set the font for the table cells or for the whole document. I have no problem with paragraphs Setting the font for the whole document: not possible. You need to set the font for the different objects (or create a subclass

Re: [iText-questions] iText question

2006-09-06 Thread bruno
[EMAIL PROTECTED] wrote: I need that image (from url) inside the pdf file. Please, where i'm wrong? Or i can't take an image from a http with itext? Before blaming iText for anything you should try something like this: java.net.URL myImage = new URL(path_to_image); myImage.openStream();

Re: [iText-questions] iText question

2006-09-04 Thread mdcapurro
Bruno, I'm sorry. Now i'm writing to the correct place(itext-questions@lists.sourceforge.net). I new, very new in java. I'm at university yet. I'm in a new work and i'm trying make a pdf from an html file. This file is simple, like your example at your page. If i work using tables and text

Re: [iText-questions] iText-question

2006-08-03 Thread bruno
Timo Biedenbender wrote: The tables should be generated dynamically. OK. They can have different number of columns and the columns can have different widths. I think, the easiest way to do this, is to generate a table with automatic-widths of the columns (like in HTML), because i want

[iText-questions] iText-question

2006-08-02 Thread Timo Biedenbender
Hello, it would be great, if you can help me with the following iText-question. I want to use iText to generate a pdf-file. It works very good and is simple to use, but i have a problem with tables. The tables should be generated dynamically. They can have different number of columns

[iText-questions] iText Question

2006-04-28 Thread Sontheimer, Marco
Hello, I've a question about creating and reading PDF files. I have written an application which can make a stamp (Text)on a PDF. The stamp I make on a separate layer in the document, because I want to show the stamp or not. My question is now: Is it possible to read the content of an

RE: [iText-questions] iText Question

2006-04-28 Thread Paulo Soares
@lists.sourceforge.netSubject: [iText-questions] iText Question Hello, I've a question about creating and reading PDF files. I have written an application which can make a stamp (Text)on a PDF. The stamp I make on a separate layer in the document, because I want to show the stamp or not. My

[iText-questions] [iText Question] - Images always centered

2006-03-08 Thread rpaquett
Hi, I've been using iText for a few months and now just of a sudden all my images that I use are no longer justified as specified, they all come up centered. Ex: Image wordMark = Image.getInstance(path... ); wordMark.setAlignement(Element.ALIGN_RIGHT); PdfPCell cellWordMark = new

Re: [iText-questions] [iText Question] - Images always centered

2006-03-08 Thread Paulo Soares
Use the latest release. - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, March 08, 2006 8:34 PM Subject: [iText-questions] [iText Question] - Images always centered Hi, I've been using iText for a few months and now just

[iText-questions] IText question

2005-10-05 Thread Grzegorz Dobrowolski
Hello, I'm wondering if IText can automaticly generate PdfPTable cell width without setting percentage of table cells, only with setting table width to 100% of page? -- Pozdrawiam, Grzegorz Dobrowolski --- This SF.Net email is

Re: [iText-questions] IText question

2005-10-05 Thread bruno
Grzegorz Dobrowolski wrote: Hello, I'm wondering if IText can automaticly generate PdfPTable cell width without setting percentage of table cells, only with setting table width to 100% of page? Yes, in that case the 100% width is distributed equally over the cells. No, it is not

[iText-questions] itext question

2005-07-12 Thread Dominik Erbsland
hello just wanted to say that you did an awesome job with iText! I am creating a PDF with a table but I cannot find a way how to change the FONT within a cell in a table. for normal paragraphs it's very easy but I just could not find the needed information about fonts in cells in the

[iText-questions] iText question

2005-07-12 Thread pmendoza
Hello, I have seen that you have many pages talking about iText library. I hope not to bother you, but maybe you can easyly help me The library is great, but i have a small problem with it. The thing is that I have a pdf form with some fields. Easily I get to set the value I want in the

RE: [iText-questions] iText question

2005-07-12 Thread Paulo Soares
: Tuesday, July 12, 2005 12:33 PM To: Paulo Soares Subject: RE: [iText-questions] iText question Thank you very much for answering me. But I still don´t know how to set the automatic size to the fields. When I set the field in the form I have the option to chose automatic font size but I

Re: [iText-questions] itext question

2005-06-22 Thread Paulo Soares
Use the latest release. That error happened if you had a ColumnText or PdfPCell with zero width. - Original Message - From: Jorge [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, June 22, 2005 4:19 PM Subject: [iText-questions] itext question I had

RE: [iText-questions] iText Question: Images

2005-06-15 Thread Paulo Soares
What is the problem exactly? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Murray Sent: Tuesday, June 14, 2005 8:16 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] iText Question: Images Sorry if this sounds

[iText-questions] iText Question: Images

2005-06-14 Thread Bill Murray
Sorry if this sounds simplistic, but I am using your component iText. I find it to be awesome. Although it's awesome, I have a question about images... - I have the need to place a large jpg underneath an overlay, transparent gif inside a pdf. I have tried for hours on end and cannot get the

[iText-questions] ITEXT question

2004-12-09 Thread Fabrizio Brozzi
I have two files PDF to be join in an unique file PDF. For this I use the Concat_Pdf from iTEXT. Now I have need to add at final PDF a new annotation (or better) an internal link on a rectangle for to go an internal page of the final PDF. In other word I have to populate (to add) in an

RE: [iText-questions] ITEXT question

2004-12-09 Thread Paulo Soares
Use PdfStamper. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fabrizio Brozzi Sent: Thursday, December 09, 2004 3:21 PM To: [EMAIL PROTECTED] Subject: [iText-questions] ITEXT question I have two files PDF to be join in an unique file PDF

RE: [iText-questions] itext question

2004-09-29 Thread Paulo Soares
] Subject: [iText-questions] itext question Hi, I am chinese developer, I want to create my document with chines fonts such as song font,hei font,fang font. But I dont't want to use ttf or ttc fonts, as follows

[iText-questions] iText Question?

2004-09-23 Thread VIJAY WADHWANI
Hi, I am using iText library to create a PDF Document and I am having a following problem. Whenever I add a cell in a Table that has a length of a text longer than a page then it does not end and it keep increasing the length of Document. Can you please help? Chunk ck; Font

RE: [iText-questions] iText - Question

2004-06-09 Thread Paulo Soares
] Cc: mohamed.karamath/[EMAIL PROTECTED] Subject: [iText-questions] iText - Question Hi We are able to generate PDF files successfully using the APIs (com.lowagie.text.pdf.PdfWriter;). But sometimes randomly it generates the blank PDF file. When we select the PDF page using Ctrl-A and copy

[iText-questions] IText question

2004-04-27 Thread T . Eetgerink
Hello I have a question . Is the development stopped with the HTML to PDF with support of CSS stopped. I want to render in memory html document to PDF and this document is built with css Do you have a example or a link of a developer who succesfully made this With kind regards [EMAIL

[iText-questions] iText Question

2004-03-30 Thread foreignman
Dear developers of a package iText during work with this package at me have arisen 2 difficulties. 1. As to me to arrange contents of imported PDF document in a cell of the table (when the table is not yet added to the document). 2. As to me to achieve that at break of page the border of short

RE: [iText-questions] iText question

2004-03-01 Thread Bill Ensley
: [EMAIL PROTECTED]Subject: [iText-questions] iText question What DPI does the resulting PDF file use? Is it different between iTextSharp and iText? I'm actually using iTextSharp. Thanks, Brian TimmerYeti Software, LLCwww.yetisoftware.com

[iText-questions] iText question

2004-02-28 Thread Brian Timmer
What DPI does the resulting PDF file use? Is it different between iTextSharp and iText? I'm actually using iTextSharp. Thanks, Brian TimmerYeti Software, LLCwww.yetisoftware.com

RE: [iText-questions] itext question

2003-10-31 Thread Paulo Soares
You have to change the page size before opening the document for it to work for the first page. Best Regards, Paulo Soares -Original Message- From: Rémi Guilbert [SMTP:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 19:11 To: [EMAIL PROTECTED] Subject: [iText-questions

Re: [iText-questions] iText question

2003-10-09 Thread Marcus Ilgner
Hi, I don't know if this could be the problem, but maybe you have to call Document::newPage() when your report gets too large? Anyway I would suggest JasperReports (http://jasperreports.sourceforge.net/) for creation of dynamic reports rather than using iText directly since you gain a lot of

[iText-questions] iText question

2003-10-08 Thread Donna Reschke
Hello, I am using iText to create dynamic invoice PDF reports. When an invoice is over a certain size, I get an error message saying the file has been damaged. I read that there was a size limit of 2G but I am not even close to that. The file is actually around 1000 KB. It seems to be hanging

[iText-questions] [itext-question] convert Html to Pdf

2003-09-05 Thread laupuiman
Hi, Instead of construting a PDF file line by line, is there any methods to convert an existing Html to Pdf for a servlet? Thanks in advance, Peg --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven.

Re: [iText-questions] [itext-question] convert Html to Pdf

2003-09-05 Thread Leonard Rosenthol
At 5:07 PM +0800 9/5/03, [EMAIL PROTECTED] wrote: Instead of construting a PDF file line by line, is there any methods to convert an existing Html to Pdf for a servlet? Sure, a number of them. What level of HTML do you need? 3.2? 4? XHTML? CSS1? CSS2? What OS platform? Leonard --

RE: [iText-questions] iText question from a new user

2003-01-30 Thread Andy Kriger
, 2003 11:34 To: 'Andy Kriger'; [EMAIL PROTECTED] Subject: RE: [iText-questions] iText question from a new user Before you start anything don't forget that fonts are usually subset which means that you have a good chance of writing a string consisting of squares. The second point is that a pdf

[iText-questions] iText question from a new user

2003-01-29 Thread Andy Kriger
I am interested in modifying existing PDF files using iText. I'd like to know what it's capabilities in this regard are. Specifically, I can currently read a file using PdfReader. Great, very easy. Is it possible to change the fonts in the document and write a new PDF out? If so, how would I get

RE: [iText-questions] iText question from a new user

2003-01-29 Thread Andy Kriger
Rosenthol [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 16:06 To: Andy Kriger; [EMAIL PROTECTED] Subject: Re: [iText-questions] iText question from a new user At 3:44 PM -0500 1/29/03, Andy Kriger wrote: I am interested in modifying existing PDF files using iText. I think you