Re: [iText-questions] Itext doesn´t work with Barcode1 28 Font

2010-02-06 Thread Daniel Essin
There is no Š in Barcode 128. The following is from: http://www.code128barcodes.com/Code-128-character-set.html *Code 128 Bar Code Character Set* Check digit value Code A Code B Code C Pattern B S B S B S 0 SP SP 00 2 1 2 2 2 2 1 ! ! 01 2 2 2 1

Re: [iText-questions] Itext doesn´t work with Barcod e128 Font

2010-02-06 Thread Claudia Murialdo
1) Yes it is ok. 2) But, Barcode 128 it just a font, isn't it?. So if I want to print only the character Š, It should be possible. Am I right?. Using itext, this character is not printed, however it is a valid character which is part of the table character of Barcode 128, i can see it in Character

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
Ok, I changed the code as you said. And it works... Nearly perfect... I get to pages with content. On the first page I get 3 tables with rows 11 to 40. That's ok. But on the second page I see the table rows 48-60. The rows 41-47 are missing. This is weird. http://img1.bildupload.com/a16ed77cd3676

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread 1T3XT info
Frank Stephan wrote: > Ok, > > Now the code works. I added the setSimpleColumn. I can see, that > document.newPage is called twice, but the document has only 1 page. > Out of the 5 tables 3 have been printed and none of the 3 has been divided. > So far it works, but where are the tables 4 and 5 wh

Re: [iText-questions] iText-questions Digest, Vol 45, Issue 25

2010-02-06 Thread Tim Robinson
> Date: Sat, 6 Feb 2010 10:35:21 + > From: Tim Robinson > Subject: [iText-questions] iTextSharp: PdfReader/PdfStamper crashes >        the     appdomain > > Hi, > > I have an ASP.Net web application which uses PdfReader and PdfStamper > to write a custom property to a PDF document. On one spec

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
Ok, Now the code works. I added the setSimpleColumn. I can see, that document.newPage is called twice, but the document has only 1 page. Out of the 5 tables 3 have been printed and none of the 3 has been divided. So far it works, but where are the tables 4 and 5 which should Appear on the next pag

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread 1T3XT info
Frank Stephan wrote: > Ok, I tried... > > I add the table to the column and simulate. If it doesn't fit I create a new > page. > But this app doesn't run. I always get the exception > > Exception in thread "main" com.itextpdf.text.DocumentException: Irregular > columns are not supported in compos

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
Ok, I tried... I add the table to the column and simulate. If it doesn't fit I create a new page. But this app doesn't run. I always get the exception Exception in thread "main" com.itextpdf.text.DocumentException: Irregular columns are not supported in composite mode. at com.itextpdf.tex

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread 1T3XT info
Frank Stephan wrote: > So there is no difference if i add text to the column or a table? Is it that > simple? Why wouldn't it be that simple? ;-) -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info ---

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
So there is no difference if i add text to the column or a table? Is it that simple? > -Ursprüngliche Nachricht- > Von: 1T3XT info [mailto:i...@1t3xt.info] > Gesendet: Samstag, 6. Februar 2010 12:49 > An: Post all your questions about iText here > Betreff: Re: [iText-questions] Control pa

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread 1T3XT info
Frank Stephan wrote: > Hi, > > here is an example > > http://img1.bildupload.com/7949f6c272f915710424e8f6808f7f71.jpg > > The third table should not start on the first page but on the second as it > does not fit on the first page. > In the ColumnTable example a new page is started, even if the n

Re: [iText-questions] iTextSharp: PdfReader/PdfStamper crashes theappdomain

2010-02-06 Thread Paulo Soares
Compile iTextSharp with .NET 2.0 and the problem should go away. Paulo - Original Message - From: "Tim Robinson" To: Sent: Saturday, February 06, 2010 10:35 AM Subject: [iText-questions] iTextSharp: PdfReader/PdfStamper crashes theappdomain Hi, I have an ASP.Net web application whi

[iText-questions] iTextSharp: PdfReader/PdfStamper crashes the appdomain

2010-02-06 Thread Tim Robinson
Hi, I have an ASP.Net web application which uses PdfReader and PdfStamper to write a custom property to a PDF document. On one specific document, this causes the Application pool worker process to crash with an error like this:  .NET Runtime version 2.0.50727.4927 - Fatal Execution Engine Error (

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
Hi, here is an example http://img1.bildupload.com/7949f6c272f915710424e8f6808f7f71.jpg The third table should not start on the first page but on the second as it does not fit on the first page. In the ColumnTable example a new page is started, even if the next table could be printed on the curre

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread 1T3XT info
Frank Stephan wrote: > Hi, > > now I know the difference. In the ColumnTable example you add just one table > and then do the output. What I need is: I want to add several tables that > are all smaller than the page size. So if 2 or more of them fit on the page, > no page break is needed. If a tab

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
Hi, now I know the difference. In the ColumnTable example you add just one table and then do the output. What I need is: I want to add several tables that are all smaller than the page size. So if 2 or more of them fit on the page, no page break is needed. If a table does not fit on the page anymo

Re: [iText-questions] Control page breaks for images and tables

2010-02-06 Thread Frank Stephan
Thanks, this seems to be what I am looking for, but what I do not understand, is: Why don't you call go(false) in the ColumnTable example (2nd Ed.) as it was done in the ColumControl example (1st Ed.). > -Ursprüngliche Nachricht- > Von: 1T3XT info [mailto:i...@1t3xt.info] > Gesendet: Sams

Re: [iText-questions] Does anyone know if iText with BouncyCastle requires Java 1.5 ?

2010-02-06 Thread Andreas Kuehne
Sorry, replied to fast ! Mathieu pointed it already ... Greetings Andreas - Original Message From: Andreas Kuehne To: Post all your questions about iText here Sent: Sat, February 6, 2010 10:28:45 AM Subject: Re: [iText-questions] Does anyone know if iText with BouncyCastle require

Re: [iText-questions] Does anyone know if iText with BouncyCastle requires Java 1.5 ?

2010-02-06 Thread Andreas Kuehne
"Unsupported major.minor version 49.0" Due to my experience this is a Java version mismatch : Are you trying to run > 1.4 classes in a 1.4 runtime ? Greetings Andreas - Original Message From: 1T3XT info To: Post all your questions about iText here Sent: Sat, February 6, 2010 7:19