<?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 : Rendering</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 : Rendering]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 13:17:38 +0000</pubDate>
  <lastBuildDate>Tue, 27 Mar 2018 01:07:59 +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=3552</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[Rendering : Thank you ingo and tfrost.Appreciate...]]></title>
   <link>http://www.quickpdf.org/forum/rendering_topic3552_post14165.html#14165</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=193">MrPopup</a><br /><strong>Subject:</strong> 3552<br /><strong>Posted:</strong> 27 Mar 18 at 1:07AM<br /><br />Thank you ingo and tfrost.<br>Appreciate you taking the time to respond.I have previously tried all renderTo options but will try again.&nbsp;<div>As tfrost surmised I am not using Delphi - my development environment is Jade (www.jadeworld.com).<br>ToString does return something but I cannot use the returned data - it does not appear to be an image.<br>Will keep you posted as to success or not.<br>Again, thanks.<br>Cheers.</div><span style="font-size:10px"><br /><br />Edited by MrPopup - 27 Mar 18 at 1:10AM</span>]]>
   </description>
   <pubDate>Tue, 27 Mar 2018 01:07:59 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/rendering_topic3552_post14165.html#14165</guid>
  </item> 
  <item>
   <title><![CDATA[Rendering : I think RenderPageToStream is...]]></title>
   <link>http://www.quickpdf.org/forum/rendering_topic3552_post14164.html#14164</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1388">tfrost</a><br /><strong>Subject:</strong> 3552<br /><strong>Posted:</strong> 25 Mar 18 at 5:51PM<br /><br />I think RenderPageToStream is Delphi only, and a user of the DLL edition is unlikely to be using Delphi. I believe that with the DLL edition you can use the 'render to string' function, but I have never tried this.&nbsp; I assume that it is going to render to a (byte *) rather than the (char *) that is documented.&nbsp; The DLL 'getting started' guide implies that with function names ending 'ToString' you have to copy the 8-bit-data result out of the buffer before calling the function again.&nbsp; It's one of the reasons I never looked further at the DLL edition!]]>
   </description>
   <pubDate>Sun, 25 Mar 2018 17:51:03 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/rendering_topic3552_post14164.html#14164</guid>
  </item> 
  <item>
   <title><![CDATA[Rendering : Hi MrPopup ;-)here you can get...]]></title>
   <link>http://www.quickpdf.org/forum/rendering_topic3552_post14163.html#14163</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3552<br /><strong>Posted:</strong> 25 Mar 18 at 3:35PM<br /><br />Hi MrPopup ;-)<br><br>here you can get an idea how you can do it without rendering to a file.<br>I did it with RenderPageToStream and it works well for me:<br><br>// . . .<br><br>&nbsp;&nbsp; QP&nbsp; := TDebenuPDFLibrary1211.Create;<br>&nbsp;&nbsp; try<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.UnlockKey('...');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.LoadFromFile(Edit1.Text, ''); <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If ( QP.EncryptionStatus &gt; 0 ) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Decrypt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pmax := QP.PageCount;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Form4.Label1.Caption := '1 from ' + IntToStr(pmax)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.CombineContentStreams;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; test_stream := TMemoryStream.Create;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ( zoom = 0 ) then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; zoom := 72;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.RenderPageToStream(zoom,1,1,test_stream);<br>&nbsp;&nbsp; finally<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Free;<br>&nbsp;&nbsp; end;<br>&nbsp;&nbsp; <br>// . . .<br><br>&nbsp;&nbsp; try<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; test_stream.Seek(0,0);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; jpg := TJPEGImage.Create;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; jpg.LoadFromStream (test_stream);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Form4.Image1.Picture.Assign(jpg);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Form4.Label1.Caption := '1' + ' from ' + IntToStr(pmax)<br>&nbsp;&nbsp; finally<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; test_stream.Free;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; jpg.Free;<br>&nbsp;&nbsp; end;<br><br>// . . .<br><br><br>]]>
   </description>
   <pubDate>Sun, 25 Mar 2018 15:35:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/rendering_topic3552_post14163.html#14163</guid>
  </item> 
  <item>
   <title><![CDATA[Rendering : Using Windows DLL V13. Would like...]]></title>
   <link>http://www.quickpdf.org/forum/rendering_topic3552_post14162.html#14162</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=193">MrPopup</a><br /><strong>Subject:</strong> 3552<br /><strong>Posted:</strong> 25 Mar 18 at 3:42AM<br /><br />Using Windows DLL V13. Would like to be able to render a page to an image but not to a file. That is have the image binary returned (renderPageToBinary). Have tried all combinations but no joy. At present I renderPageToFile and then read the file. Very slow and inefficient. Appreciate any help. Thank you. Cheers.<img src="http://www.quickpdf.org/forum/smileys/smiley1.gif" border="0" alt="Smile" title="Smile" /><span style="font-size:10px"><br /><br />Edited by MrPopup - 25 Mar 18 at 3:45AM</span>]]>
   </description>
   <pubDate>Sun, 25 Mar 2018 03:42:16 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/rendering_topic3552_post14162.html#14162</guid>
  </item> 
 </channel>
</rss>