<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Debenu Quick PDF Library - PDF SDK Community Forum : QuickPDF v6.04.3 - Added Digital Signatures</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description><![CDATA[This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : General Discussion : QuickPDF v6.04.3 - Added Digital Signatures]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 12:37:23 +0000</pubDate>
  <lastBuildDate>Mon, 01 Sep 2008 13:31:53 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.01</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_post_feed.asp?TID=941</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Debenu Quick PDF Library - PDF SDK Community Forum]]></title>
   <url>http://www.quickpdf.org/forum/forum_images/QPDF_Forum_Title.png</url>
   <link>http://www.quickpdf.org/forum/</link>
  </image>
  <item>
   <title><![CDATA[QuickPDF v6.04.3 - Added Digital Signatures : Delbeke has managed to do something...]]></title>
   <link>http://www.quickpdf.org/forum/quickpdf-v6043-added-digital-signatures_topic941_post4440.html#4440</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1">Michel_K17</a><br /><strong>Subject:</strong> 941<br /><strong>Posted:</strong> 01 Sep 08 at 1:31PM<br /><br />Delbeke has managed to do something that we never thought we would seewith this library: <b>a major new feature.</b> Well done Delbeke! He has added support for digital signatures.<br><br>This new version is provided by <a href="member_profile.asp?PF=129" target="_blank">Delbeke </a>and is available in the source code area &#091;<a href="http://www.quickpdf.org/forum/forum_posts.asp?TID=940" target="_blank">here</a>&#093;. <i>Please note that you need to own the source code and have the password to access this area of the forum.</i><br><br>A "pre-compiled" and "DCU" versions of the library will be made available in the near future once development and testing of the new version has been completed.<br><br><u><b>List of Changes</b></u><br><ul><li>Added ability to digitally sign a PDF file.</li></ul><u><b>Notes</b></u><br><ul><li>Note that this code is preliminary and that checks and securitytest code still needs to be added. However, if all of your parametersare correct, the program works!</li><li>You need to have CAPICOM.dll registered on your machine. Thisfile is distributed by Microsoft. More information is available fromMicrosoft &#091;<a href="http://msdn.microsoft.com/en-us/library/aa388154.aspx" target="_blank">here</a>&#093;.</li></ul><br><u><b>Instructions on New DigiSign Function</b></u><br><ul><li>Load/Create a document usual way</li><li>Select the page you want the signature to be applied</li><li>Use the new <b>DigiSign </b>funtion. The parameters are:</li><ul><li><b>DestFileName </b>=&gt; The final name for the signed pdf</li><li><b>ImgFileName&nbsp; </b>=&gt; The Logo you want to apply as signature.</li><ul><li>This parameter is optional. You can Leave it blank if you want. </li><li>The color white is used as the transparent color.</li><li>The image file formats accepted are the same as those used by AddImageFromFIle</li></ul><li><b>Name </b>=&gt; the signer's name</li><li><b>Reason </b>=&gt; the reason for signing</li><ul><li>Optional. May be left blank</li><li>Example: Approved</li></ul><li><b>Location </b>=&gt; The signer's location</li><ul><li>Optional. May be left blank</li><li>Example: London</li></ul><li><b>ContactInfo</b> =&gt; the signer's contact info</li><ul><li><b>Optio</b>nal. May be left blank</li><li>Example: e-mail address, phone number, etc.</li></ul><li><b>Certificate</b> =&gt; the certificate's path and filename</li><ul><li>Accepts certificates with the ".pfx" extension</li><li>You can create this certificate it by exporting your signature from the windows certificate store.</li></ul><li><b>PassWord</b> =&gt; the password for this certificate</li><li><b>Left,Top,Width,Height</b> =&gt; the position and size for the signature</li><ul><li>if Width and/or Height is set to zero, the signature is invisible.</li></ul></ul></ul><u><b></b></u><br><u><b>Visual Basic Sample Code</b></u><br><br>&nbsp; m_oDoc.LoadFromFile "c:\PdfVisu\PdfTest\test.pdf"<br>&nbsp; m_oDoc.SelectPage (m_oDoc.PageCount)<br>&nbsp; m_oDoc.SetOrigin 1<br>&nbsp; m_oDoc.SetMeasurementUnits 1<br>&nbsp; lRet = m_oDoc.DigiSign("c:\PdfVisu\PdfTest\TestSign.pdf", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "c:\PdfVisu\PdfTest\Signat1.JPG", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "JL Delbeke", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "Why not", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "France", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "Jean-Luc@Delbeke.fr", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "c:\cert.pfx", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "MyPassword", _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10, 10, 30, 30)<br><br><u><b>Delphi Sample Code</b></u><br><br>&nbsp;Qp.LoadFromFile('C:\PdfVisu\PdfTest\Test.pdf');<br>&nbsp;Qp.SelectPage(Qp.PageCount) ;<br>&nbsp;Qp.SetOrigin(1);<br>&nbsp;Qp.SetMeasurementUnits(1);<br>&nbsp;Qp.DigiSign('C:\PdfVisu\PdfTest\TestSign.Pdf',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'C:\PdfVisu\PdfTest\Signat1.jpg',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Jean-Luc Delbeke',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Why Not',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'France',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Jean-Luc@Delbeke.fr',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'c:\Cert.pfx',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'MyPassword',10,10,30,30);<br><br><br>]]>
   </description>
   <pubDate>Mon, 01 Sep 2008 13:31:53 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/quickpdf-v6043-added-digital-signatures_topic941_post4440.html#4440</guid>
  </item> 
 </channel>
</rss>