Re: [iText-questions] Font question

2007-08-05 Thread Paulo Soares
You have to register the fonts in DefaultFontMapper. Paulo - Original Message - From: "ssinai" <[EMAIL PROTECTED]> To: Sent: Sunday, August 05, 2007 9:41 PM Subject: [iText-questions] Font question > > I've been doing iText for a whole 2 days. I was fiddling around with an > example

[iText-questions] Font question

2007-08-05 Thread ssinai
I've been doing iText for a whole 2 days. I was fiddling around with an example involving converting a Swing JTable to pdf, and have been trying to figure out how to get the font that's in the table to show up correctly in pdf. While the type 1 fonts seem to show up correctly, I'm having proble

Re: [iText-questions] pkcs12 finally working !

2007-08-05 Thread Paulo Soares
- Original Message - From: "Felipe Gaúcho" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Sunday, August 05, 2007 5:44 PM Subject: [iText-questions] pkcs12 finally working ! > Hi, > > thank you all for the friendly support. Footprint is finally signing > PDF

Re: [iText-questions] concatenating documents

2007-08-05 Thread Paulo Soares
MemoryStream.ToArray(). Paulo - Original Message - From: "Rick Roen" <[EMAIL PROTECTED]> To: Sent: Sunday, August 05, 2007 7:08 PM Subject: [iText-questions] concatenating documents > > > I have an existing class that creates individual invoice documents. The > Create method takes a st

[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

[iText-questions] pkcs12 finally working !

2007-08-05 Thread Felipe Gaúcho
Hi, thank you all for the friendly support. Footprint is finally signing PDF document using PKCS12 keystore. It was a lot of missing concepts by my side and some minor code bugs :) Asap I will publish a short article about how to use Footprint, and eventually some technical blogs about the code t

Re: [iText-questions] overlaying images

2007-08-05 Thread Paulo Soares
Get an image with transparency, such as PNG, and set the position with Image.setAbsolutePosition(). To actually place it use Document.add() or PdfContentByte.addImage(). You can layer images on top of images. This is all explained in the book and in the tutorial. Paulo - Original Message -