<?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</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description>This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : Last 10 Posts</description>
  <pubDate>Fri, 24 May 2013 17:09:57 +0000</pubDate>
  <lastBuildDate>Fri, 24 May 2013 12:32:31 +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>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>General Discussion : Is there a replace text function in QuickPdf</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2651&amp;PID=10892#10892</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> Is there a replace text function in QuickPdf<br /><strong>Posted:</strong> 24 May 13 at 12:32PM<br /><br /><div>Jim,</div><div><br></div><div>QPL has hundreds of functions and even ones I have need seen before. &nbsp;<span style="line-height: 1.4;">There is a QP.ReplaceTag function &nbsp;that searches for text within the content stream an replaces the text with a new value. &nbsp;This may or may not work as expected based on the complexity of the document including fonts and the uniqueness of the tag. &nbsp;Text will not be rewrapped and spacing of other text elements may or may not be affected.</span></div><div><br></div><div>QP.LoadFromFile("99pages.pdf", "");</div><div>QP.ReplaceText("Page 19", "Page 99") &nbsp;// This shouldn't cause too many problems.</div><div>QP.SaveToFile("out.pdf");</div><div><br></div><div>Andrew</div>]]>
   </description>
   <pubDate>Fri, 24 May 2013 12:32:31 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2651&amp;PID=10892#10892</guid>
  </item> 
  <item>
   <title>I need help - I can help : Find text by font size?</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2648&amp;PID=10891#10891</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> Find text by font size?<br /><strong>Posted:</strong> 24 May 13 at 8:25AM<br /><br />My code is working correctly with your PDF and is returning the 22pt font from both pages.<div><br></div><div>Is LoadFromFile returning 1 in your case ? &nbsp;Does QP.PageCount return 1 or 2 ? &nbsp;It should be 2 for your PDF. &nbsp;It could be a permissions problem. &nbsp;I suspect LoadFromFile is failing. By default QPL always has a single blank page allocated in memory it could be that is the reason nothing is being extracted.</div><div><br></div><div>You may then try string s= QP.GetPageText(7); &nbsp;MessageBox.Show(s); &nbsp;to make sure the text is actually being extracted.</div><div><br></div><div>Andrew.</div>]]>
   </description>
   <pubDate>Fri, 24 May 2013 08:25:04 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2648&amp;PID=10891#10891</guid>
  </item> 
  <item>
   <title>I need help - I can help : (Delphi 7) How to open PDF from Oracle Database?</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2653&amp;PID=10890#10890</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2383" rel="nofollow">jhsj</a><br /><strong>Subject:</strong> (Delphi 7) How to open PDF from Oracle Database?<br /><strong>Posted:</strong> 23 May 13 at 8:50PM<br /><br />Hi!<br><br>I have an Oracle Database with blob fields used to store some pdf files.<br><br>I am trying to use Debenu Quick PDF to read these PDF blobs from Oracle and save them into PDF files (C:\ folder).<br><br>I have the following Delphi 7 code:<br><br>procedure TForm1.Button3Click(Sender: TObject);<br>var i, DocumentID, OK: Integer;<br>&nbsp;&nbsp;&nbsp; blob: TStream;<br>begin<br>// snipped some code used to open the object QryStream (TQuery type) and to create <br>// the QP object<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while not QryStream.Eof do<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; begin<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Inc(i);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; blob := QryStream.CreateBlobStream(QryStream.FieldByName('Content'),bmRead);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK := QP.LoadFromStream(blob,'');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if OK &lt;&gt; 0 then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; begin<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DocumentID := QP.SelectedDocument();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.DASaveAsFile(DocumentID,'C:\File_' + IntToStr(i) + '.pdf');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ShowMessage('Error: ' + IntToStr(QP.LastErrorCode));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QryStream.Next;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end;<br><br>The code below:<br>OK := QP.LoadFromStream(blob,'');<br>gives an Access violation error at address XXXXXXX <br><br>What am I doing wrong here?<br>I really need to read these PDFs stores and to save them as files!<br><br>Thank you!<br>Henrique<br>]]>
   </description>
   <pubDate>Thu, 23 May 2013 20:50:44 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2653&amp;PID=10890#10890</guid>
  </item> 
  <item>
   <title>I need help - I can help : Cannot get QuickPDF library-- Lib version to work</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2652&amp;PID=10889#10889</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2379" rel="nofollow">DezhiF</a><br /><strong>Subject:</strong> Cannot get QuickPDF library-- Lib version to work<br /><strong>Posted:</strong> 23 May 13 at 3:13PM<br /><br />My company is looking to license a PDF library for use in our product and I have been assigned the task of <br />evaluating different libraries to determine which we want to use.<br /><br />We use the Lib version, my application<br />crashes on this line:<br /><br />DEBENUPDFLIBRARYLIB0912_DllMain(GetModuleHandle(NULL), DLL_PROCESS_ATTACH, NULL);<br /><br />This is the error we get:<br />Unhandled exception at 0x770407e4 in cadracad.exe: 0xC0000025: Windows cannot continue from this exception.<br /><br /><br />We are attempting to call this from our C code which is not built with Unicode support.  We are using <br />Visual Studio 2008 compilers.  Is it possible to do what we are attempting?<br /><br />Thanks! ]]>
   </description>
   <pubDate>Thu, 23 May 2013 15:13:11 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2652&amp;PID=10889#10889</guid>
  </item> 
  <item>
   <title>I need help - I can help : Cannot get QuickPDF library to work</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2481&amp;PID=10888#10888</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2379" rel="nofollow">DezhiF</a><br /><strong>Subject:</strong> Cannot get QuickPDF library to work<br /><strong>Posted:</strong> 23 May 13 at 3:06PM<br /><br />I have this exact problem with Lib version, my application<br />crashes on this line:<br /><br />DEBENUPDFLIBRARYLIB0912_DllMain(GetModuleHandle(NULL), DLL_PROCESS_ATTACH, NULL);<br /><br />This is the error we get:<br />Unhandled exception at 0x770407e4 in cadracad.exe: 0xC0000025: Windows cannot continue from this exception.<br /><br /><br />We are attempting to call this from our C code which is not built with Unicode support.  We are using Visual Studio 2008 compilers.  Is it possible to do what we are attempting?<br /><br />Thanks! <br />Dezhi Fan]]>
   </description>
   <pubDate>Thu, 23 May 2013 15:06:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2481&amp;PID=10888#10888</guid>
  </item> 
  <item>
   <title>I need help - I can help : Find text by font size?</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2648&amp;PID=10887#10887</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2380" rel="nofollow">Skylla</a><br /><strong>Subject:</strong> Find text by font size?<br /><strong>Posted:</strong> 23 May 13 at 2:05PM<br /><br />Its a basic pdf actually which is create by me for testing.<div><br></div><div><table width="99%"><tr><td><pre class="BBcode">http://speedy.sh/KMPmW/aaa.pdf</pre></td></tr></table></div><div><br></div><div>Just 24, 23, 22, 20 pt text's in it. Created with word, saved as pdf.</div>]]>
   </description>
   <pubDate>Thu, 23 May 2013 14:05:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2648&amp;PID=10887#10887</guid>
  </item> 
  <item>
   <title>General Discussion : Is there a replace text function in QuickPdf</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2651&amp;PID=10886#10886</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2289" rel="nofollow">JMLM</a><br /><strong>Subject:</strong> Is there a replace text function in QuickPdf<br /><strong>Posted:</strong> 23 May 13 at 10:17AM<br /><br />ok thanks Ingo for your support.<div id="myWatcherDiv" style="display:n&#111;ne;"></div><div>Jim</div>]]>
   </description>
   <pubDate>Thu, 23 May 2013 10:17:34 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2651&amp;PID=10886#10886</guid>
  </item> 
  <item>
   <title>I need help - I can help : Set PDF Output Quality / Flatten PDF</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2639&amp;PID=10885#10885</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> Set PDF Output Quality / Flatten PDF<br /><strong>Posted:</strong> 23 May 13 at 9:33AM<br /><br /><div><br></div>I am wondering what your final goal is ? &nbsp;<span style="line-height: 1.4;">Do you want to reduce file size ? &nbsp;remove transparency ?</span><div><br></div><div>What type of files are you working with ? &nbsp;Large artwork files ? Do you want to send it to a printer ?<br><div><br></div><div>Andrew.</div></div>]]>
   </description>
   <pubDate>Thu, 23 May 2013 09:33:35 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2639&amp;PID=10885#10885</guid>
  </item> 
  <item>
   <title>I need help - I can help : How to make duplicate pages without any reference?</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2649&amp;PID=10884#10884</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1887" rel="nofollow">ExchangeViews</a><br /><strong>Subject:</strong> How to make duplicate pages without any reference?<br /><strong>Posted:</strong> 23 May 13 at 9:22AM<br /><br />Hi&nbsp;AndrewC,<div><br></div><div>Great, it worked. Thanks again.<img src="http://www.quickpdf.org/forum/smileys/smiley20.gif" border="0" alt="Thumbs Up" title="Thumbs Up" /></div>]]>
   </description>
   <pubDate>Thu, 23 May 2013 09:22:56 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2649&amp;PID=10884#10884</guid>
  </item> 
  <item>
   <title>General Discussion : Is there a replace text function in QuickPdf</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2651&amp;PID=10883#10883</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111" rel="nofollow">Ingo</a><br /><strong>Subject:</strong> Is there a replace text function in QuickPdf<br /><strong>Posted:</strong> 23 May 13 at 9:05AM<br /><br />Hi Jim!<div>&nbsp;</div><div>There isn't a replace text function.</div><div>Changing the free text content isn't easy stuff for such a light weight library.</div><div>Tag data (like meta data) you can change easily.</div><div>Please have a look in the online reference...</div><div>&nbsp;</div><div>Cheers, Ingo</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Thu, 23 May 2013 09:05:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2651&amp;PID=10883#10883</guid>
  </item> 
 </channel>
</rss>