Re: [iText-questions] Extract whole Page as Image? (urgent)

2008-09-22 Thread Rick Roen
I think you can do this with Ghostscript from the command line. Free too! From: Rene Weiss [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2008 4:24 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Extract whole Page as Image? (urgent) Is it possible to extract

Re: [iText-questions] corrupt pdf

2008-08-21 Thread Rick Roen
, Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Roen Sent: Thursday, August 21, 2008 11:19 AM To: 'Post all your questions about iText here' Subject: Re: [iText-questions] corrupt pdf Ok, I pared the old one down to just one line per the attached an

Re: [iText-questions] adding a line between 2 table rows

2008-08-12 Thread Rick Roen
Li Wang, I think it would be easier if you added the total row to the bottom of the first table. I don't know how you are adding the cells to your table - using defaultcell or adding a new cell, but you can add a top border like this: Cell.Border = iTextSharp.text.Rectangle.NO_BORDER

Re: [iText-questions] a question about iText

2008-08-11 Thread Rick Roen
Nahla, I cannot tell you anything about your Jxcell problem, but do your users have MS Office 2007? If so you can download a free addition to Office to allow you a menu option to convert to Pdf. This would be much easier than you writing code. Rick From: [EMAIL PROTECTED] [mailto:[EMA

[iText-questions] Barcode image UPCA

2008-08-07 Thread Rick Roen
I have the following iTextSharp (v 4.1.1.0) VB code: Dim bc As BarcodeEAN = New BarcodeEAN() bc.CodeType = Barcode.UPCA bc.Code = "878373001012" barUPC = bc.CreateDrawingImage(Color.Black, Color.White) barUPC.Save("c:\temp\_barcode.png", Syste

Re: [iText-questions] Share examples of pdfs created with iText!

2008-06-13 Thread Rick Roen
ge- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie Sent: Friday, June 13, 2008 9:36 AM To: Post all your questions about iText here Subject: Re: [iText-questions] Share examples of pdfs created with iText! Rick Roen wrote: > Hey, those are really nice! > >

Re: [iText-questions] Share examples of pdfs created with iText!

2008-06-13 Thread Rick Roen
Hey, those are really nice! I use tables extensively for producing invoices/confirmations etc. and have always wondered if I could do the rounded corners like you have all over. How are you doing these? Regards, Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] O

Re: [iText-questions] silent print setpagesize problems

2008-04-11 Thread Rick Roen
Yes, I am using Win forms with Ghostscript. Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Richard Sent: Friday, April 11, 2008 3:02 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] silent print setpagesize problems Hi Rick Indee

Re: [iText-questions] silent print setpagesize problems

2008-04-11 Thread Rick Roen
Jonathan, Just let me put in my two cents here. Acrobat Reader goes through frequent updates. Many clients have it set for auto update, so you have little control of their version. If you are trying to do something that Leonard says is no longer supported, you could save yourself a lo

Re: [iText-questions] Adobe reader dll's

2008-03-12 Thread Rick Roen
I've made you a simple version checker. See attachment. Open the PDF and an alert will give you some info (that is: if the Viewer isn't too old to support app.viewerType and app.viewerVersion). -- This answer is provided by 1T3XT BVBA Thank you for the version checker. That should make part of t

Re: [iText-questions] Adobe reader dll's

2008-03-12 Thread Rick Roen
L PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Rick Roen > Sent: Wednesday, March 12, 2008 1:30 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Adobe reader dll's > > I'm following up on a problem I have with clients with older ve

[iText-questions] Adobe reader dll's

2008-03-12 Thread Rick Roen
I'm following up on a problem I have with clients with older versions of Adobe Reader (< 7) who cannot read PDF created by iTextSharp after I updated to Adobe Reader 8.1.2. Does iTextSharp use a dll or anything from the version of Adobe Reader that is located on the computer that runs the progr

[iText-questions] unable to read in old versions of Adobe Reader

2008-03-10 Thread Rick Roen
This is a follow up from a message I posted last week. After I updated Adobe Reader to 8.1.2, I had several vendors say they were unable to read the pdf purchase orders that my client was sending. These pdf's are created using iTextSharp, opened in AR and then emailed as an attachment using th

Re: [iText-questions] Can't read PDF and silent print problem

2008-03-07 Thread Rick Roen
I send it to myself, and opened it without any problem, too. Maybe you should ask a printscreen of the error from the vendors. What version of Adobe Reader do you have Sergio? Good idea for the print screen, I'll try this. _ From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge

[iText-questions] Can't read PDF and silent print problem

2008-03-07 Thread Rick Roen
This may be OT, but I see a lot of activity about the "Silent print" issue with Adobe Reader v8.1.2 and I wonder if this could be related. I create a PDF with iText.net (a purchase order), open it from within a net program and then the client will use the AR menu option to email to a vendor. Th

[iText-questions] concatenating documents

2007-08-05 Thread Rick Roen
I have an existing class that creates individual invoice documents. The Create method takes a stream object, which normally is a file stream. Now I want to batch print invoices, so I want to call this Invoice class with a memory stream and then concatenate that stream into a "batch" document

Re: [iText-questions] PdfPTable extendlastrow

2007-04-02 Thread Rick Roen
Thanks Paulo, That did it! Rick - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and

Re: [iText-questions] connect to onNewPage event

2007-04-02 Thread Rick Roen
I got it. In case someone else needs a reference you can look at http://itextsharp.sourceforge.net/examples/Chap1202.cs This has a wire-up for an event that can be used as a prototype. Rick _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Roen Sent

[iText-questions] connect to onNewPage event

2007-04-02 Thread Rick Roen
Does someone have an example of connecting to and using the OnEndPage event in VB.NET 2005? I have the book, but I cannot translate the java into NET. Thanks, Rick - Take Surveys. Earn Cash. Influence the Future of

Re: [iText-questions] PdfPTable extendlastrow

2007-04-02 Thread Rick Roen
ost all your questions about iText here Subject: Re: [iText-questions] PdfPTable extendlastrow You'll have to provide more code so that the problem can be reproduced. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Rick Roen >

[iText-questions] PdfPTable extendlastrow

2007-04-02 Thread Rick Roen
I have a PdfPTable width 100% with two columns. In the left col I have a PdfPTable with several rows of information. On the right col I have a PdfPTable with a few rows of information, but this table is shorted than the left table. I set the right table like this: Dim table As PdfPTa

[iText-questions] PDF to TIFF

2007-03-04 Thread Rick Roen
I want to make sure I have not missed something in iText before I continue searching. The short question is: Can iText take a pdf it has created and convert it to a TIFF group 3 file for faxing? I am creating pdf documents using iText.Net. I have a routine in the VS.NET program that wil

Re: [iText-questions] X Y Coordinates of a PDF

2007-01-16 Thread Rick Roen
Isn't it measured in points? 72 points = 1 inch. 8.5 * 72 = 612 points 11.0 * 72 = 792 points Top right corner of 8.5 x 11 page = x = -612, y = -792 Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mick Collins Sent: Tuesday, January 16, 2007 3:10

Re: [iText-questions] FW: How can one format negative numbers byenclosing them in parentheses instead of preceding them witha minus sign?

2007-01-12 Thread Rick Roen
How about adding a Chunk to the end of a positive number that contains a ")" character and make the font.color = color.white? That way the "padding" at the end would always be exactly the same as the "}" that shows for the negative numbers. If you are putting these numbers in a PdfPTable, y

Re: [iText-questions] hyphenation

2006-12-27 Thread Rick Roen
documentation, both free and paid, is WAY better than the open source programs I have used. It makes learning the product enormously faster and easier! Documentation is the least favorite thing I do as a programmer as well it might be for you. Rick Rick Roen wrote: > I don't see any re

Re: [iText-questions] hyphenation

2006-12-26 Thread Rick Roen
Thanks Paulo, Hyphenation works now. I don't see any reference to AddToResourceSearch in the eBook after a full text search, or any hits in Google. Perhaps next time I speak with one of your "sales reps" I will suggest they add this to the book. ;) Rick -Original Message- From: [EMAIL

[iText-questions] hyphenation

2006-12-26 Thread Rick Roen
I'm using VB.net 2005 with iTextSharp. I am not getting the expected hyphenation from the following (excerpted from a Sub that inserts two chunks into a PdfPTable cell Dim topChunk = New Chunk(txtTop, New Font(font.HELVETICA, 6, Nothing, Color.DARK_GRAY)) Dim hyphen As New

Re: [iText-questions] FW: duplex printing

2006-12-20 Thread Rick Roen
Thanks, I just upgraded to Acrobat 8 yesterday and didn't know this was a new feature. Rick Roen wrote: > I'm producing a pdf document that contains several invoices for various > client customers. > I see in the resulting pdf properties in the Advanced tab a DuplexMode >

[iText-questions] FW: duplex printing

2006-12-20 Thread Rick Roen
I'm producing a pdf document that contains several invoices for various client customers. I see in the resulting pdf properties in the Advanced tab a DuplexMode property that is set to "Simplex". I want to default to "Duplex". Is this possible to set from iText? I have the eBook, but I don

[iText-questions] UPC checksum

2006-12-07 Thread Rick Roen
I can generate a UPC code with no problem when I supply the check digit with the barcode string. Does iTextSharp supply a check digit if requested? I can see the GenerateCheckDigit property, but it seems to have no effect when I put it either before or after like this: Dim upc As B

[iText-questions] book

2006-12-07 Thread Rick Roen
When will the book be available? Amazon says release 1 Dec, but it is apparently not available yet. Rick - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the cha

Re: [iText-questions] leader

2006-12-03 Thread Rick Roen
t: Re: [iText-questions] leader Rick Roen wrote: > Well now that I try to do the footer with a table I am having a problem. > > Here is what I am doing in VB.Net (pseudo code): > > Dim phrase as Phrase = new Phrase() > Dim table as PdfPTable = new PdfPTable(1) > Table.AddCell(&

Re: [iText-questions] leader

2006-12-03 Thread Rick Roen
PROTECTED] On Behalf Of Bruno Lowagie Sent: Sunday, December 03, 2006 1:34 AM To: Post all your questions about iText here Subject: Re: [iText-questions] leader Rick Roen wrote: > I want to space two sets of text to the right and left of an area. For > example in the footer I would like som

Re: [iText-questions] leader

2006-12-03 Thread Rick Roen
[mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie Sent: Sunday, December 03, 2006 1:34 AM To: Post all your questions about iText here Subject: Re: [iText-questions] leader Rick Roen wrote: > I want to space two sets of text to the right and left of an area. For > example in the foote

[iText-questions] leader

2006-12-02 Thread Rick Roen
I want to space two sets of text to the right and left of an area. For example in the footer I would like something like this: +++ Left aligned text right aligned text

[iText-questions] PdfPTable keep on same page

2006-12-02 Thread Rick Roen
Is there some way to keep a PdfPTable on the same page as long as it fits? I see the keepTogether property but it seems to have no effect. I don't want to split the table unless it will not fit on one page. thanks, Rick -