<?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 : add handwrite siganture to pdf form</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 : I need help - I can help : add handwrite siganture to pdf form]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 16 Jun 2026 07:41:06 +0000</pubDate>
  <lastBuildDate>Fri, 08 May 2020 20:01:43 +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=3811</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[add handwrite siganture to pdf form : Try it ... then you&amp;#039;ll know...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15248.html#15248</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 08 May 20 at 8:01PM<br /><br />Try it ... then you'll know it.<br>Post the code if it works... then we'll know it, too ;-)<br><br>]]>
   </description>
   <pubDate>Fri, 08 May 2020 20:01:43 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15248.html#15248</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : now i want to add transparent...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15247.html#15247</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1982">mazluta</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 08 May 20 at 9:19AM<br /><br />now i want to add transparent image (i want the signature graphic image to be transparent).<div>is it possible ?</div><div><br></div>]]>
   </description>
   <pubDate>Fri, 08 May 2020 09:19:21 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15247.html#15247</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : that seem working.procedure TfrmDemo.Button1Click(Sender:...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15246.html#15246</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1982">mazluta</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 08 May 20 at 9:17AM<br /><br /><div>that seem working.</div><div><br></div><div>procedure TfrmDemo.Button1Click(Sender: TObject);</div><div>var</div><div>&nbsp; SignProcessID: Integer;</div><div>&nbsp; FldIndx : integer;</div><div>&nbsp; ImgIndex : integer;</div><div>&nbsp; Rslt : integer;</div><div>&nbsp; tmpJpg : TJpegGraphic;</div><div>&nbsp; Stream&nbsp; : TMemoryStream;</div><div>begin</div><div><br></div><div>&nbsp; if Not Assigned(ViewPrintQP) then</div><div>&nbsp; begin</div><div>&nbsp; &nbsp; ViewPrintQP := TDebenuPDFLibrary.Create;</div><div>&nbsp; &nbsp; ViewPrintQP.UnlockKey(edtLicenseKey.Text);</div><div>&nbsp; end;</div><div><br></div><div>&nbsp; Rslt := ViewPrintQP.LoadFromFile('c:\aa\QuickPDF.pdf', '');</div><div>&nbsp; if rslt &lt;&gt; 1 then</div><div>&nbsp; &nbsp; beep;</div><div><br></div><div>(*</div><div>&nbsp; Rslt := ViewPrintQP.AddStampAnnotationFromImage(50,50,50,50,'c:\aa\logo-2.jpg','mazluta','hanibaal',0,0,0,0);</div><div>&nbsp; if rslt &lt;&gt; 1 then</div><div>&nbsp; &nbsp; beep;</div><div>&nbsp; Rslt := ViewPrintQP.SaveToFile('c:\aa\Quick2.pdf');</div><div>&nbsp; if rslt &lt;&gt; 1 then</div><div>&nbsp; &nbsp; beep;</div><div>*)</div><div><br></div><div>&nbsp; FldIndx := ViewPrintQP.NewFormField('mazluta',6);</div><div><br></div><div>&nbsp; ViewPrintQP.SetFormFieldBounds(FldIndx, 10, 400, 100, 100);</div><div>&nbsp; ViewPrintQP.SetFormFieldHighlightMode(FldIndx, 2);</div><div><br></div><div>&nbsp; tmpJpg := TJpegGraphic.Create;</div><div>&nbsp; Try</div><div>&nbsp; &nbsp; tmpJpg.LoadFromFile('c:\aa\logo-2.jpg');</div><div>&nbsp; &nbsp; Stream&nbsp; := TMemoryStream.Create;</div><div>&nbsp; &nbsp; Try</div><div>&nbsp; &nbsp; &nbsp; tmpJpg.SaveToStream(Stream);</div><div>&nbsp; &nbsp; &nbsp; ImgIndex := ViewPrintQP.AddImageFromStream(Stream,0);</div><div>&nbsp; &nbsp; Finally</div><div>&nbsp; &nbsp; &nbsp; FreeAndNil(Stream);</div><div>&nbsp; &nbsp; End;</div><div>&nbsp; Finally</div><div>&nbsp; &nbsp; FreeAndNil(tmpJpg);</div><div>&nbsp; End;</div><div><br></div><div>&nbsp; Rslt := ViewPrintQP.SelectImage(ImgIndex);</div><div>&nbsp; if rslt &lt;&gt; 1 then</div><div>&nbsp; &nbsp; beep;</div><div><br></div><div>&nbsp; Rslt := ViewPrintQP.SetFormFieldSignatureImage(FldIndx,ImgIndex,0);</div><div>&nbsp; if rslt &lt;&gt; 1 then</div><div>&nbsp; &nbsp; beep;</div><div><br></div><div>&nbsp; ViewPrintQP.SetNeedAppearances(0);</div><div>&nbsp; ViewPrintQP.UpdateAndFlattenFormField(FldIndx);</div><div><br></div><div>&nbsp; Rslt := ViewPrintQP.SaveToFile('c:\aa\Quick2.pdf');</div><div>&nbsp; if rslt &lt;&gt; 1 then</div><div>&nbsp; &nbsp; beep;</div><div>&nbsp; ViewPrintQP.Free;</div><div>end;</div><div><br></div>]]>
   </description>
   <pubDate>Fri, 08 May 2020 09:17:50 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15246.html#15246</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : here you can search for anything...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15243.html#15243</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 07 May 20 at 9:27PM<br /><br />here you can search for anything which exists in the Debenu ressources:<br>https://www.debenu.com/docs/pdf_library_reference/Search.php<br><br>]]>
   </description>
   <pubDate>Thu, 07 May 2020 21:27:46 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15243.html#15243</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : what you suggest is to sign with...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15242.html#15242</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1982">mazluta</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 07 May 20 at 9:24PM<br /><br />what you suggest is to sign with pfx file<div><br></div><div>i just want to add "handwrite" signature (with the mouse) in a PDF form.</div><div>or just PDF (with no form).</div><div>some thing like annotation but when the user add the BMP or sign with the mouse,</div><div>save the file and not let any one touch the "signature"</div>]]>
   </description>
   <pubDate>Thu, 07 May 2020 21:24:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15242.html#15242</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : thanks.i will check it. ]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15241.html#15241</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1982">mazluta</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 07 May 20 at 9:18PM<br /><br />thanks.<div>i will check it.</div>]]>
   </description>
   <pubDate>Thu, 07 May 2020 21:18:32 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15241.html#15241</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : Hi,yes... with image.Here&amp;#039;s...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15239.html#15239</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 06 May 20 at 10:32PM<br /><br />Hi,<br><br>yes... with image.<br>Here's a normal sample from the kb:<br>https://www.debenu.com/kb/add-visual-digital-signature-to-a-pdf-programmatically/<br>Here you'll find all related functions:<br>https://www.debenu.com/docs/pdf_library_reference/SecurityAndSignatures.php<br><br>Cheers and welcome here,<br>Ingo<br><br>]]>
   </description>
   <pubDate>Wed, 06 May 2020 22:32:48 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15239.html#15239</guid>
  </item> 
  <item>
   <title><![CDATA[add handwrite siganture to pdf form : is there away to add signature...]]></title>
   <link>http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15230.html#15230</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1982">mazluta</a><br /><strong>Subject:</strong> 3811<br /><strong>Posted:</strong> 05 May 20 at 11:01PM<br /><br />is there away to add signature drawing possibility or image as hanwrite signature ?]]>
   </description>
   <pubDate>Tue, 05 May 2020 23:01:35 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/add-handwrite-siganture-to-pdf-form_topic3811_post15230.html#15230</guid>
  </item> 
 </channel>
</rss>