[iText-questions] External signature with Aladdin eToken (USB tokens)

2007-11-30 Thread boris
I would be very glad if someone could give me a hint or has encountered similar problems. Has somebody successfully signed pdfs with Aladdin eTokesn? Below is the used code: Thanks in advance ! Boris fout = new FileOutputStream(sigParams.getOutPath()); stp = PdfStamper.createSignature(sigParams

[iText-questions] Problem Signing PDF-Document with external Certificate, signature is invalid

2007-11-26 Thread boris
).setHexWriting(true)); sap.close(dic); fout.close(); Thank you very much ! Regards, Boris - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Stud

[iText-questions] i-Text functionality question

2006-11-16 Thread Minkin, Boris
Thank you, Boris Minkin Please do not transmit orders or instructions regarding a UBS account by e-mail. The information provided in this e-mail or any attachments is not an official transaction confirmation or account statement. For your protection, do not include account numbers, Socia

[iText-questions] Table content font (cell ?...)

2004-05-17 Thread Boris
Table ?... 2 - Alternatively can one set the complete PDF document font to also act for the Table font ?... How ?... Thank you for your help. Boris. --- This SF.Net email is sponsored by: SourceForge.net Broadband Sign-up now for SourceForge

RE: [iText-questions] Turning whole page output 90 degrees

2003-09-16 Thread Boris X
ize.A4.rotate() will set the page size as portrait A4 but with the /Rotate 90 in the page dictionary. Unless you are using a very, very old version of iText that's how it works. If you have any doubts create the document and with an hex editor replace the /Rotate 90 with spac

RE: [iText-questions] Turning whole page output 90 degrees

2003-09-16 Thread Boris X
Just to publish it on the forum: PageSize.A4.rotate() will set the page size as portrait A4 but with the /Rotate 90 in the page dictionary. Unless you are using a very, very old version of iText that's how it works. If you have any doubts create the document and with an hex editor replace the /Ro

RE: [iText-questions] Turning whole page output 90 degrees

2003-09-16 Thread Boris X
9 0 R /MediaBox[0 0 612 792] /Contents[5 0 R ] As you see it is just one simple command "Rotate 90" after description of *SAME* MedaiBox. Is not this neat?! Best regards, Boris From: Paulo Soares <[EMAIL PROTECTED]> To: 'Boris X' <[EMAIL PROTECTED]>, [EMAIL PRO

[iText-questions] Turning whole page output 90 degrees

2003-09-15 Thread Boris X
page_width); // Rotate the user coordinate system. PDF_rotate ($pdf, 270); } else { PDF_begin_page ($pdf, $page_width, $page_height); } This is all it takes to rotate whole output on page. Any ideas how to do same trick in iText? Best rega