<?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 : General Discussion</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description>This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : General Discussion : Last 10 Posts</description>
  <pubDate>Mon, 20 May 2013 03:21:34 +0000</pubDate>
  <lastBuildDate>Thu, 02 May 2013 15:07:26 +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?FID=11</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 : UpdateAndFlattenFormField</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2633&amp;PID=10814#10814</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> UpdateAndFlattenFormField<br /><strong>Posted:</strong> 02 May 13 at 3:07PM<br /><br />Hi!<div>&nbsp;</div><div>If you've found an error in the lib you should post it to the official support forum.</div><div>Here the Debenu crew is reading/writing, too but an official mail is better regarding this issue.</div><div>&nbsp;</div><div>Cheers and thanks,</div><div>Ingo</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Thu, 02 May 2013 15:07:26 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2633&amp;PID=10814#10814</guid>
  </item> 
  <item>
   <title>General Discussion : UpdateAndFlattenFormField</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2633&amp;PID=10813#10813</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2018" rel="nofollow">Chumly</a><br /><strong>Subject:</strong> UpdateAndFlattenFormField<br /><strong>Posted:</strong> 02 May 13 at 1:10PM<br /><br />UpdateAndFlattenFormField function is setting the font to wingdings in version 9.14.<br />If I remove UpdateAndFlattenFormField, and use UpdateAppearanceStream, and FlatenFormField, the text is rendered properly.<br />]]>
   </description>
   <pubDate>Thu, 02 May 2013 13:10:20 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2633&amp;PID=10813#10813</guid>
  </item> 
  <item>
   <title>General Discussion : Change ImageResolution</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2593&amp;PID=10687#10687</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> Change ImageResolution<br /><strong>Posted:</strong> 08 Apr 13 at 10:05AM<br /><br />Hi Karsten!<div>&nbsp;</div><div>Changing directly inside a created pdf won't succeed with QP.</div><div>For my opinion you have to extract all content... then resize</div><div>the images and then reassamble the pages.</div><div>If you have luck the new result looks similar to the old one ;-)</div><div>Sorry.</div><div>&nbsp;</div><div>Cheers, Ingo</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Mon, 08 Apr 2013 10:05:48 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2593&amp;PID=10687#10687</guid>
  </item> 
  <item>
   <title>General Discussion : Change ImageResolution</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2593&amp;PID=10685#10685</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1052" rel="nofollow">Karsten</a><br /><strong>Subject:</strong> Change ImageResolution<br /><strong>Posted:</strong> 08 Apr 13 at 8:36AM<br /><br />Hi,<br><br>I must reduce the filesize of my PDFs and save as new one.<br>How can I change the imageresolution of alle images to 72 dpi wit QuickPDFLibrary?<br><br>This code don't do this<br><br>private static void resizePDF(string source, string target)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PDFLibrary QP = new PDFLibrary(@"QuickPDFDLL0816.dll");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string licenseKey = "...licensekey..."; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.UnlockKey(licenseKey);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int FileHandle = QP.LoadFromFile(source, "");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int numPages = QP.PageCount();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int numImages = QP.FindImages();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int i = 1; i &lt;= numPages; i++)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int j = 1; j &lt;= numImages; j++)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int idxImage = QP.GetImageID(i);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SelectImage(idxImage);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetImageResolution(72,72,2);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SaveToFile(target);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br><br>Regards<br>Karsten<br><span style="font-size:10px"><br /><br />Edited by Karsten - 08 Apr 13 at 8:37AM</span>]]>
   </description>
   <pubDate>Mon, 08 Apr 2013 08:36:39 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2593&amp;PID=10685#10685</guid>
  </item> 
  <item>
   <title>General Discussion : Assemble multi PDF files in one Page</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10653#10653</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> Assemble multi PDF files in one Page<br /><strong>Posted:</strong> 27 Mar 13 at 11:57AM<br /><br />Hi!<div>&nbsp;</div>Please read here about content streams / -groups:<div><a href="http://www.debenu.com/docs/pdf_library_reference/C&#111;ntentStreamsAndOpti&#111;nalC&#111;ntentGroups.php" target="_blank">http://www.debenu.com/docs/pdf_library_reference/ContentStreamsAndOptionalContentGroups.php</a></div><div>Perhaps you should try to "combine the layers" first.</div><div>&nbsp;</div><div>Cheers, Ingo</div>]]>
   </description>
   <pubDate>Wed, 27 Mar 2013 11:57:03 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10653#10653</guid>
  </item> 
  <item>
   <title>General Discussion : Assemble multi PDF files in one Page</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10652#10652</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> Assemble multi PDF files in one Page<br /><strong>Posted:</strong> 27 Mar 13 at 11:50AM<br /><br />Hi<div><span style="text-align: left; : rgb251, 251, 253; ">RenderDocumentToStream is not listed in mac documentation and not listed in Xcode</span><br><div>I tried these lines : &nbsp;http://www.debenu.com/kb/render-a-pdf-as-an-image-with-an-asymmetrical-dpi/</div><div><br></div><div><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: #000000">&nbsp; &nbsp;&nbsp;&#091;DQPL </span><span style="color: #36595d">LoadFromFile</span><span style="color: #000000">:</span>@"/Users/JMLM/Desktop/advil.pdf"<span style="color: #000000"> :</span>@""<span style="color: #000000">&#093; ;</span></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: #000000">&nbsp; &nbsp; &#091;DQPL </span><span style="color: #36595d">RenderPageToFile</span><span style="color: #000000">:</span><span style="color: #3a00d6">72</span><span style="color: #000000">: </span><span style="color: #3a00d6">1</span><span style="color: #000000"> : </span><span style="color: #3a00d6">5</span><span style="color: #000000">:</span>@"/Users/JMLM/Desktop/testImg/test.png"<span style="color: #000000">&#093;;</span></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Get the original size of the page</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; <span style="color: #b50da1">double</span> OriginalWidth = &#091;DQPL <span style="color: #36595d">PageWidth</span>&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; <span style="color: #b50da1">double</span> OriginalHeight = &#091;DQPL <span style="color: #36595d">PageHeight</span>&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Add a new page</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; &#091;DQPL <span style="color: #36595d">NewPage</span>&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Work out the asymmetrical scaling</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; <span style="color: #b50da1">double</span> NewWidth = OriginalWidth;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; <span style="color: #b50da1">double</span> NewHeight = OriginalHeight * <span style="color: #3a00d6">196</span> / <span style="color: #3a00d6">204</span>;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Set the dimensions of the new page</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; &#091;DQPL <span style="color: #36595d">SetPageDimensions</span> :NewWidth : NewHeight&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Capture the original page (it will be removed</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// from the document automatically)</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; <span style="color: #b50da1">int</span> CaptureID = &#091;DQPL <span style="color: #36595d">CapturePage</span> : <span style="color: #3a00d6">1</span>&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Set the original to the top-left corner</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; &#091;DQPL <span style="color: #36595d">SetOrigin</span> : <span style="color: #3a00d6">1</span>&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Draw the captured page onto the new page</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; ">&nbsp; &nbsp; &#091;DQPL <span style="color: #36595d">DrawCapturedPage</span> :CaptureID: <span style="color: #3a00d6">0</span>: <span style="color: #3a00d6">0</span>: NewWidth: NewHeight&#093;;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb20, 135, 11; "><span style="color: #000000">&nbsp; &nbsp; </span>// Render the page</p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: #000000">&nbsp; &nbsp; &#091;DQPL </span><span style="color: #36595d">RenderPageToFile</span><span style="color: #000000"> : </span><span style="color: #3a00d6">204</span><span style="color: #000000">:&nbsp; </span><span style="color: #3a00d6">1</span><span style="color: #000000">: </span><span style="color: #3a00d6">5</span><span style="color: #000000">: </span>@"/Users/JMLM/Desktop/testImg/test-2.png"<span style="color: #000000"> &#093;;</span></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: #000000"><br></span></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: #000000"><br></span></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: rgb0, 0, 0; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; ">and I tried these lines :&nbsp;&nbsp;</span></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "></p><p style="margin: 0px; "><span style="color: #b50da1">int</span> pageCount = &#091;DQPL <span style="color: #36595d">PageCount</span>&#093;;</p><p></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "></p><p style="margin: 0px; "><span style="color: #000000">&nbsp; &nbsp;&nbsp;&#091;DQPL </span><span style="color: #36595d">LoadFromFile</span><span style="color: #000000">:</span>@"/Users/JMLM/Desktop/test.pdf"<span style="color: #000000"> :</span>@""<span style="color: #000000">&#093; ;</span></p><p style="margin: 0px; min-height: 13px; ">&nbsp;&nbsp; &nbsp;</p><p style="margin: 0px; "><span style="color: #000000">&nbsp; &nbsp; &#091;DQPL </span><span style="color: #36595d">RenderDocumentToFile</span><span style="color: #000000">:</span><span style="color: #3a00d6">72</span><span style="color: #000000">: </span><span style="color: #3a00d6">0</span><span style="color: #000000">: pageCount: </span><span style="color: #3a00d6">5</span><span style="color: #000000">: </span>@"/Users/JMLM/Desktop/testImg/test.png"<span style="color: #000000">&#093;;</span></p><p></p><p style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb201, 37, 36; "><span style="color: #000000"><br></span></p></div><div>Images are created but all are empty.&nbsp;</div></div><div><br></div><span style="font-size:10px"><br /><br />Edited by JMLM - 27 Mar 13 at 11:52AM</span>]]>
   </description>
   <pubDate>Wed, 27 Mar 2013 11:50:50 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10652#10652</guid>
  </item> 
  <item>
   <title>General Discussion : Assemble multi PDF files in one Page</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10647#10647</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> Assemble multi PDF files in one Page<br /><strong>Posted:</strong> 26 Mar 13 at 7:49PM<br /><br />Nice, thanks.]]>
   </description>
   <pubDate>Tue, 26 Mar 2013 19:49:32 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10647#10647</guid>
  </item> 
  <item>
   <title>General Discussion : Assemble multi PDF files in one Page</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10646#10646</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> Assemble multi PDF files in one Page<br /><strong>Posted:</strong> 26 Mar 13 at 7:36PM<br /><br />Yes. It works and it's easy to handle.<br>Better is RenderDocumentToStream (faster).<br>If you can post your code here (without key!)<br>perhaps there's anybody who can correct your<br>code.<br>You should be patient 'cause the mac-version <br>is pretty "fresh" on the market ;-)<br>Try the guides and search here in the samples-<br>section with RenderDocumentTo.<br><br>Cheers, Ingo<br><span style="font-size:10px"><br /><br />Edited by Ingo - 26 Mar 13 at 7:36PM</span>]]>
   </description>
   <pubDate>Tue, 26 Mar 2013 19:36:18 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10646#10646</guid>
  </item> 
  <item>
   <title>General Discussion : Assemble multi PDF files in one Page</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10644#10644</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> Assemble multi PDF files in one Page<br /><strong>Posted:</strong> 26 Mar 13 at 6:05PM<br /><br />I'm on mac : does &nbsp;<span style="color: rgb54, 89, 93; font-family: Menlo; font-size: 11px; line-height: normal; ">RenderDocumentToFile function works ?</span><div>I tried it but images are empty.</div>]]>
   </description>
   <pubDate>Tue, 26 Mar 2013 18:05:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10644#10644</guid>
  </item> 
  <item>
   <title>General Discussion : Assemble multi PDF files in one Page</title>
   <link>http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10642#10642</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> Assemble multi PDF files in one Page<br /><strong>Posted:</strong> 26 Mar 13 at 4:41PM<br /><br />Hi Jim!<div>&nbsp;</div><div>We don't have a guid here for things like this.</div><div>What you'll need is the functionality to save the single pages as images.</div><div>In a second run you should shrink the dimensions of each image with ratio 3.</div><div>In a third run you should paste these smaller images three per page on new pages.</div><div>In a fourth run you can write on these pages with the drawing functionalities.</div><div>More detailed you can read about the functions for the single steps in the developer guide and the reference.</div><div>&nbsp;</div><div>Cheers and welcome here,</div><div>Ingo</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Tue, 26 Mar 2013 16:41:44 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/forum_posts.asp?TID=2578&amp;PID=10642#10642</guid>
  </item> 
 </channel>
</rss>