[iText-questions] convertions to pdf

2009-11-09 Thread popprem
Hi all, I have an urgent requirement to convert various file formats to pdf. I found that itext is a helpful product but i dont have much time to evaluate. So need all your help in this matter. My question is what file formats can be converted to pdf using itext? Thanks in advance. Prasa

Re: [iText-questions] Possible defect: Does not display unicodeafter "Flattening"

2009-11-09 Thread Aftab Mahmood
Thank you Paulo It did work ... by hard coding many font with "Identity-H" encoding .. I do have the book... and has read chapter 16... since there was no reference to substitution font.. so was not able to connect the dots...with chapter 8. I need one more favor if you provide me some point

Re: [iText-questions] Possible defect: Does not displayunicodeafter "Flattening"

2009-11-09 Thread Paulo Soares
The suggestion is to read the documentation preferably the book. "utf-8" is not a valid encoding in PDF, use Identity-H. There's nothing magic about needing a substitution font, that's what Acrobat does behind the scenes. All this was discussed several times before in the mailing list. Paulo -

Re: [iText-questions] Possible defect: Does not display unicodeafter "Flattening"

2009-11-09 Thread Aftab Mahmood
Paulo I dont understand this requirement . User provides me a pre-designed PDF that supports Unicode. My service fill in some information and returns it to the user. How can I know which font to substitute with. Second I tried to substituted font (with different encodings) and was not able to ge

Re: [iText-questions] iText and Bouncy Castle using JVM 1.4.2!

2009-11-09 Thread Andreas Kuehne
Try java.security.Security.insertProviderAt(new BouncyCastleProvider(), 1); or java.security.Security.addProvider(new BouncyCastleProvider()); AddProvider usually works fine, but I remember strange problems with 1.4.* Good luck Andreas - Original Message From:

Re: [iText-questions] iText and Bouncy Castle using JVM 1.4.2!

2009-11-09 Thread webpointz
Bingo! Found out that you were indeed correct. The providers in CFMX were NOT loading this MessageDigest. It seems that CFMX has an issue loading the extra provider, so the fix is to add the provider to the JAVA.SECURITY file in the JRE\LIB\SECURITY folder AND place the BC*.jar files in the JRE

Re: [iText-questions] iText and Bouncy Castle using JVM 1.4.2!

2009-11-09 Thread webpointz
But I added the provider to the JAVA.SECURITY file in the JRE's LIB\SECURITY folder: "security.provider.6=org.bouncycastle.jce.provider.BouncyCastleProvider" When I do a listing of providers I don't see it anywhere. Is there some other way to access it or register it? Thanks! webpointz wrot

Re: [iText-questions] iText and Bouncy Castle using JVM 1.4.2!

2009-11-09 Thread Andreas Kuehne
Hi, I don't know anything about the your special environment, but hash algos are _not_ subject of the policy files. They limit the encryption strength. >From the message I would guess there is no crypto provider registered. Have a >look what's registered : java.security.Provider[] pro

[iText-questions] iText and Bouncy Castle using JVM 1.4.2!

2009-11-09 Thread webpointz
I am using ColdFusion (CFMX 7.02). In order not to break the bundled iText version, I am using Mark Mandels JavaLoader utility to directly load the latest iText and Bouncy Castle jar files. No matter what I try, when I attempt to do "acrofields.verifySignature" I get the error "java.security.NoS

Re: [iText-questions] Errors in Adobe Acrobat Reader

2009-11-09 Thread Leonard Rosenthol
Probably something that you are doing in your code. Check for unbalanced save/restores, for example... -Original Message- From: Ludger [mailto:rossk...@online.de] Sent: Monday, November 09, 2009 1:14 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Errors in Adobe

[iText-questions] Errors in Adobe Acrobat Reader

2009-11-09 Thread Ludger
Hello http://old.nabble.com/file/p26157759/Q4UReport_299_2009_26.pdf Q4UReport_299_2009_26.pdf I have an error: "An error exists on this page. Acrobat may not display the page correctly . Please contact the person who created the PDF document to correct the problem." As far as I can see visual

Re: [iText-questions] PDF Generation Features

2009-11-09 Thread Paulo Soares
All but the last. Paulo > -Original Message- > From: Joel Gerber [mailto:joel.gerber.r...@statefarm.com] > Sent: Monday, November 09, 2009 4:15 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PDF Generation Features > > Which of the following features does i

[iText-questions] PDF Generation Features

2009-11-09 Thread Joel Gerber
Which of the following features does iText support in PDF Generation? Archival (PDF/A-1b) Archival(PDF/A-1a) Password Protection Encryption Apply restrictions to printing modifying, and copying File Embedding Combine Multiple PDFs Validate Accessible PDF's Thank you, Joel Gerber -

Re: [iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread Iliadis Yannis
That's why I said to ignore my sample. I was using an older iText version with completeRow not present. 2009/11/9 1T3XT info > Codex wrote: > > No, because the number off cells are randdom (could be more than 10). > > I only want six colums so the first 6 cells should be displayed in ROW1 > > th

Re: [iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread 1T3XT info
Codex wrote: > No, because the number off cells are randdom (could be more than 10). > I only want six colums so the first 6 cells should be displayed in ROW1 > the other four cells should be displayed on a new ROW. Use the method PdfPTable.completeRow() and cells will be added automatically (usi

Re: [iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread Iliadis Yannis
Ignore my sample algorithm with the colspan calculation. 2009/11/9 Iliadis Yannis > Sorry but I had in mind that you want to show them in one row. > > PdfPTable automatically adds a new row if all the cells in one row are > full, but since you define that the table must have 6 columns and the se

Re: [iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread Iliadis Yannis
Sorry but I had in mind that you want to show them in one row. PdfPTable automatically adds a new row if all the cells in one row are full, but since you define that the table must have 6 columns and the second row only contains 4, no row is created. Each row must be of same size. Thus either you

Re: [iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread Codex
No, because the number off cells are randdom (could be more than 10). I only want six colums so the first 6 cells should be displayed in ROW1 the other four cells should be displayed on a new ROW. Iliadis Yannis wrote: > > Could it have something to do with the fact that you only define a table

Re: [iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread Iliadis Yannis
Could it have something to do with the fact that you only define a table of 6 columns instead of 10? 2009/11/9 Codex > > Why are there no more than 6 cells added to the table! > What should I change to display the other generated cells? > > > > Dim doc As New Document(iTextSharp.text.PageSize.A4

[iText-questions] When adding 10 cells only 6 are displayed in PdfPTable

2009-11-09 Thread Codex
Why are there no more than 6 cells added to the table! What should I change to display the other generated cells? Dim doc As New Document(iTextSharp.text.PageSize.A4, 15, 15, 15, 15) Dim name As String = "test.pdf" Try Dim Writer As PdfWriter = PdfWriter.GetInstan

Re: [iText-questions] PDF Concat using ITextSharp 4.1.6

2009-11-09 Thread Paulo Soares
> -Original Message- > From: sase1984 [mailto:s.selvakum...@spi-bpo.com] > Sent: Monday, November 09, 2009 11:47 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PDF Concat using ITextSharp 4.1.6 > > > Hi All, > > I am new to this forum. > > Kindly provide

[iText-questions] PDF Concat using ITextSharp 4.1.6

2009-11-09 Thread sase1984
Hi All, I am new to this forum. Kindly provide updated sample code to concatenate pdf with bookmarks and links using ITextSharp 4.1.6 since i could not find SetOutlines method. Also let me know whether i can able to merge pdf more than 1 GB files since this is not possible in ITextSharp 4.0.2.

Re: [iText-questions] Invisible links

2009-11-09 Thread Leonard Rosenthol
No! Color = NULL means NO COLOR. If you want Black, then ask for Black. Leonard From: John Renfrew [mailto:r...@btclick.com] Sent: Friday, November 06, 2009 2:26 AM To: iText-questions@lists.sourceforge.net Subject: [iText-questions] Invisible links Just tried that... Doesn't do the thing I a