<?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>Quick PDF Library - PDF SDK Community Forum</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description>This is an XML content feed of; Quick PDF Library - PDF SDK Community Forum : Last 10 Posts</description>
  <pubDate>Sat, 04 Feb 2012 22:35:54 +0000</pubDate>
  <lastBuildDate>Fri, 03 Feb 2012 20:18:11 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_topic_feed.asp</WebWizForums:feedURL>
  <image>
   <title>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>I need help - I can help : How to draw hatches</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2124&amp;PID=9061#9061</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1569" rel="nofollow">edvoigt</a><br /><strong>Subject:</strong> How to draw hatches<br /><strong>Posted:</strong> 03 Feb 12 at 8:18PM<br /><br />Hi,<br><br>there is something more to say. Because hatch or not hatch is a question of orientation. <br><img src="http://www.edvoigt.de/extra/2012-02-03%2020h56_41.png" height="312" width="335" border="0" /><br>My first example shows a normal drawn box and for clipping a path consisting of a circle and a hatch-box in it. Here the source:<br><font face="Courier New, Courier, mono">&nbsp; QP.SetOrigin(0);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Bottomleft<br>&nbsp; QP.SetMeasurementUnits(1);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Millimeter<br>&nbsp; QP.SetPageDimensions(210, 297);<br><br>&nbsp; QP.SetLineWidth(0.1);<br>&nbsp; QP.SetLineColor(1, 0, 0);<br>&nbsp; QP.SetFillColor(1, 1, 0);<br>&nbsp; x0 := 25; x1 := 175;<br>&nbsp; y0 := 170; y1 := 270;<br>&nbsp; r := 70;<br>&nbsp; // 1. draw without clipping<br>&nbsp; QP.DrawBox(x0, y1, x1-x0, y1-y0, 1);<br>&nbsp; QP.DrawCircle((x0+x1)/2, y1-r, r, 0);<br><br>&nbsp; QP.SaveState; // for later use without clipping<br>&nbsp; // 2. define clipping path<br>&nbsp; QP.StartPath((x0+x1)/2, y1);<br>&nbsp; QP.AddArcToPath((x0+x1)/2, y1-r, 360);&nbsp; // the "normal" path for clipping<br>&nbsp; // 3. hatch-box-building<br>&nbsp; // hatch or not hatch is a question of orientation<br>&nbsp; QP.MovePath(x0+20, y0+75); // upper left corner<br>&nbsp; QP.AddLineToPath(x0+20, y0+50); // lower left<br>&nbsp; QP.AddLineToPath(x0+50, y0+50); // lower right<br>&nbsp; QP.AddLineToPath(x0+50, y0+75); // upper right<br>&nbsp; QP.AddLineToPath(x0+20, y0+75); // close hatch, important!<br>&nbsp; QP.SetClippingPath;<br>&nbsp; // 4. draw clipped things<br>&nbsp; // it will be drawn only inside the first circle and outside our hatchbox<br>&nbsp; QP.DrawBox(x0, y1, x1-x0, y1-y0, 0);<br>&nbsp; for i:=0 to 52 do QP.DrawLine(x1-i*5, y0, x1, y0+i*5);<br>&nbsp; QP.SetFillColor(0, 1, 0);<br>&nbsp; QP.DrawCircle(x0+50, y0+75, 10, 2);<br><br>&nbsp; QP.LoadState; // stop clipping from here<br><br>&nbsp; QP.SetLineColor(0, 0, 0);<br>&nbsp; QP.DrawLine(x0, y0, (x0+x1)/2, y1);<br></font><br>The second example is more interessting. Using four lines two triangles are builded, but only one of them becomes to be hatch.&nbsp; <br><br>That's so because of orientation during AddLineToPath-sequence.<br><img src="http://www.edvoigt.de/extra/2012-02-03%2020h58_22.png" height="250" width="153" border="0" /><br>Wandering from P1 over P2 to P3 upper triangle is ever on your right side. But the other Triangle is on the way from P3 over P4 to P1 on left side. Areas on right side are are parts of the path, but areas on left side dont't belong to path, they are hatches.<br><br>Source for this:<br><font face="Courier New, Courier, mono">&nbsp; x0 := 100; y1 := y0-50; y0 := 20;&nbsp; r := 30;<br>&nbsp; QP.SaveState; // for later use without clipping<br>&nbsp; QP.StartPath(x0-r-5, y1+5);<br>//first a box as clipping area<br>&nbsp; QP.AddLineToPath(x0+2*r, y1);<br>&nbsp; QP.AddLineToPath(x0+2*r, y0-1);<br>&nbsp; QP.AddLineToPath(x0-r, y0-1);<br>&nbsp; QP.AddLineToPath(x0-r, y1);<br>// and now a special kind of half hatch<br>&nbsp; QP.MovePath(x0, y1);<br>&nbsp; QP.AddLineToPath(x0+r, y1);<br>&nbsp; QP.AddLineToPath(x0-r, y0);<br>&nbsp; QP.AddLineToPath(x0+r, y0);<br>&nbsp; QP.AddLineToPath(x0, y1);<br>&nbsp; QP.SetClippingPath;<br>&nbsp; QP.DrawBox(x0-r, y1, 2*r, y1-y0, 1);<br>// show hatch construction<br>&nbsp; QP.SetLineColor(0, 0, 0);<br>&nbsp; QP.SetLineWidth(1.0);<br>&nbsp; QP.DrawLine(x0, y1, x0+r, y1); // show the contour <br>&nbsp; QP.DrawLine(x0+r, y1, x0-r, y0);<br>&nbsp; QP.DrawLine(x0-r, y0, x0+r, y0);<br>&nbsp; QP.DrawLine(x0+r, y0, x0, y1);<br><br>&nbsp; QP.LoadState; // stop clipping now again<br>&nbsp; QP.DrawText(x0, y1+2, 'P1');<br>&nbsp; QP.DrawText(x0+r, y1+2, 'P2');<br>&nbsp; QP.DrawText(x0-r, y0-5, 'P3');<br>&nbsp; QP.DrawText(x0+r, y0-5, 'P4');<br></font><br>Cheers,<br>Werner<br><span style="font-size:10px"><br /><br />Edited by edvoigt - Yesterday at 8:20PM</span>]]>
   </description>
   <pubDate>Fri, 03 Feb 2012 20:18:11 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2124&amp;PID=9061#9061</guid>
  </item> 
  <item>
   <title>General Discussion : Looking to add PDF417 2D barcode image to PDF</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=1908&amp;PID=9060#9060</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1588" rel="nofollow">Carneno</a><br /><strong>Subject:</strong> Looking to add PDF417 2D barcode image to PDF<br /><strong>Posted:</strong> 03 Feb 12 at 5:59PM<br /><br /><p><font color="#0000ff">This is excellent news!!!</p><div></div>Thanks very much.<div>&nbsp;</div>Keep up the good work for an excellent product.<div>&nbsp;</div>Tony</font>]]>
   </description>
   <pubDate>Fri, 03 Feb 2012 17:59:03 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=1908&amp;PID=9060#9060</guid>
  </item> 
  <item>
   <title>I need help - I can help : OpenEdge Progress</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2130&amp;PID=9059#9059</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1839" rel="nofollow">thrash</a><br /><strong>Subject:</strong> OpenEdge Progress<br /><strong>Posted:</strong> 03 Feb 12 at 2:22PM<br /><br /><p>Hi,&nbsp;</p><p>is it possible to use this great library in OpenEdge (vers. 10.2A) as EXTERNAL library?</p><p>I am trying to call functions from library but no chance.</p><p>&amp;SCOP DLL   'QUICKPDFDLL.DLL'<br><br>PROCEDURE QuickPDFUnlockKey EXTERNAL {&amp;DLL} : &nbsp;<br>&nbsp; &nbsp;DEF INPUT PARAM LicenceKey AS CHAR.&nbsp;<br>&nbsp;   &nbsp;DEF RETURN PARAM  iRetValue AS LONG.<br>END PROCEDURE.<br><br>DEF VAR i AS INT NO-UNDO.<br><br>RUN QuickPDFUnlockKey (INPUT &lt;licence key&gt;, OUTPUT i).<br>&nbsp;</p><p>Any ideas? please.</p>]]>
   </description>
   <pubDate>Fri, 03 Feb 2012 14:22:57 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2130&amp;PID=9059#9059</guid>
  </item> 
  <item>
   <title>General Discussion : Looking to add PDF417 2D barcode image to PDF</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=1908&amp;PID=9058#9058</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1483" rel="nofollow">AndrewC</a><br /><strong>Subject:</strong> Looking to add PDF417 2D barcode image to PDF<br /><strong>Posted:</strong> 03 Feb 12 at 11:24AM<br /><br />PDF 417 support was added to the 8.11 release.<div><br></div><div><a href="http://www.quickpdflibrary.com/help/quickpdf/DrawPDF417Symbol.php" target="_blank">http://www.quickpdflibrary.com/help/quickpdf/DrawPDF417Symbol.php</a></div><div><br></div><div>Andrew.</div>]]>
   </description>
   <pubDate>Fri, 03 Feb 2012 11:24:34 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=1908&amp;PID=9058#9058</guid>
  </item> 
  <item>
   <title>General Discussion : Looking to add PDF417 2D barcode image to PDF</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=1908&amp;PID=9057#9057</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1838" rel="nofollow">zacbro</a><br /><strong>Subject:</strong> Looking to add PDF417 2D barcode image to PDF<br /><strong>Posted:</strong> 02 Feb 12 at 3:03PM<br /><br />i've no idea about your issue.&nbsp;<div>there is a <a href="http://www.keepdynamic.com/dotnet-barcode/barcode/pdf-417.shtml" target="_blank">pdf417 2D barcode for .net</a>&nbsp;that may be helpful!</div>]]>
   </description>
   <pubDate>Thu, 02 Feb 2012 15:03:37 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=1908&amp;PID=9057#9057</guid>
  </item> 
  <item>
   <title>I need help - I can help : How to draw hatches</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2124&amp;PID=9056#9056</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1833" rel="nofollow">kaiken1987</a><br /><strong>Subject:</strong> How to draw hatches<br /><strong>Posted:</strong> 02 Feb 12 at 1:58PM<br /><br />Thank you that worked for me very well.]]>
   </description>
   <pubDate>Thu, 02 Feb 2012 13:58:03 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2124&amp;PID=9056#9056</guid>
  </item> 
  <item>
   <title>I need help - I can help : Imposing PDF</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2126&amp;PID=9055#9055</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1836" rel="nofollow">Barnabe42</a><br /><strong>Subject:</strong> Imposing PDF<br /><strong>Posted:</strong> 02 Feb 12 at 1:46PM<br /><br />Thanks a lot, I was able to impose 3 pdfs into a single A0 pdf.<div><br></div><div><br></div>]]>
   </description>
   <pubDate>Thu, 02 Feb 2012 13:46:06 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2126&amp;PID=9055#9055</guid>
  </item> 
  <item>
   <title>I need help - I can help : vb6 dll</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2128&amp;PID=9054#9054</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1511" rel="nofollow">darkv</a><br /><strong>Subject:</strong> vb6 dll<br /><strong>Posted:</strong> 02 Feb 12 at 8:08AM<br /><br />Using LoadLibrary allows using the dll without registering (except if the loadlib first invocation registers in background) <br><br>The only constraint is to know where the dll is stored<br>]]>
   </description>
   <pubDate>Thu, 02 Feb 2012 08:08:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2128&amp;PID=9054#9054</guid>
  </item> 
  <item>
   <title>I need help - I can help : How to add rich media for pdf file ??</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2129&amp;PID=9053#9053</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1795" rel="nofollow">trungdtdev</a><br /><strong>Subject:</strong> How to add rich media for pdf file ??<br /><strong>Posted:</strong> 02 Feb 12 at 7:50AM<br /><br /><font face="Arial, Helvetica, sans-serif">Is Quick PDF library supports&nbsp;Function groups add rich media like Acrobat X Pro ???</font><span style="font-size:10px"><br /><br />Edited by trungdtdev - 02 Feb 12 at 7:53AM</span>]]>
   </description>
   <pubDate>Thu, 02 Feb 2012 07:50:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2129&amp;PID=9053#9053</guid>
  </item> 
  <item>
   <title>I need help - I can help : How to Extract or Convert page PDF to HTML</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2079&amp;PID=9052#9052</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1795" rel="nofollow">trungdtdev</a><br /><strong>Subject:</strong> How to Extract or Convert page PDF to HTML<br /><strong>Posted:</strong> 02 Feb 12 at 7:45AM<br /><br />Thanks !&nbsp;<div>But i use quickpdf for build my tools convert , create , edit PDF file</div>]]>
   </description>
   <pubDate>Thu, 02 Feb 2012 07:45:50 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2079&amp;PID=9052#9052</guid>
  </item> 
 </channel>
</rss>
