<?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 : Insert More Images</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 : Insert More Images]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 19:33:51 +0000</pubDate>
  <lastBuildDate>Mon, 26 Sep 2011 05:19:16 +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=1971</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[Insert More Images :  Also it is important to remember...]]></title>
   <link>http://www.quickpdf.org/forum/insert-more-images_topic1971_post8393.html#8393</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1483">AndrewC</a><br /><strong>Subject:</strong> 1971<br /><strong>Posted:</strong> 26 Sep 11 at 5:19AM<br /><br />Also it is important to remember that ImageWidth and ImageHeight return the width and height of the image in pixels. &nbsp;The SetPageDimensions expects measurements in points where 72points = 1 inch. &nbsp;<div><br></div><div>You would need to use ImageHorizontalResolution, ImageVerticalResolution and ImageReolutionUnits to calculate the size of the original image. &nbsp;Not all image fomats return a DPI value such as PNG files.<br><br>&nbsp;for i = 1 to 13</div><div>&nbsp;begin</div><div>&nbsp; &nbsp; if (i &lt;&gt; 1) then</div><div>&nbsp; &nbsp; &nbsp; QP.NewPage(); &nbsp;// Page 1 is created by default.</div><div><br><span ="apple-style-span"="" style=": rgb251, 251, 253; ">&nbsp; &nbsp; QP.AddImageFromFile("c:\001-EXP3.tif", i)&nbsp;&nbsp;&nbsp;'--&gt; i = Pag. Num.&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;lWidth = QP.ImageWidth()&nbsp;* 72.0 / QP.ImageHorizontalResolution();<br>&nbsp;&nbsp;&nbsp;&nbsp;lHeight = QP.ImageHeight() * 72.2 / QP.ImageVerticalResolution();&nbsp;<br>&nbsp; &nbsp; QP.SetPageDimensions(lWidth, lHeight)&nbsp;<br>&nbsp; &nbsp; QP.DrawImage(0, lHeight, lWidth, lHeight)&nbsp;<br>&nbsp;end;</span></div><div><span ="apple-style-span"="" style=": rgb251, 251, 253; "><br>&nbsp;If QP.SaveToFile("c:\from image.pdf") = 1 Then&nbsp;</span></div><div><br></div><span style="font-size:10px"><br /><br />Edited by AndrewC - 26 Sep 11 at 2:47PM</span>]]>
   </description>
   <pubDate>Mon, 26 Sep 2011 05:19:16 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/insert-more-images_topic1971_post8393.html#8393</guid>
  </item> 
  <item>
   <title><![CDATA[Insert More Images : Hi Maber!You have to work with...]]></title>
   <link>http://www.quickpdf.org/forum/insert-more-images_topic1971_post8388.html#8388</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1971<br /><strong>Posted:</strong> 22 Sep 11 at 8:27PM<br /><br />Hi Maber!<br><br>You have to work with a loop...<br>...with the QuickPDF-syntax <br>"NewPage",<br>"GetImagePageCount",<br>...<br>then it will work.<br>Have a look at the online reference here:<br>http://www.quickpdflibrary.com/help/quickpdf/FunctionGroups.php<br><br>Cheers and welcome here,<br>Ingo<br><br>]]>
   </description>
   <pubDate>Thu, 22 Sep 2011 20:27:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/insert-more-images_topic1971_post8388.html#8388</guid>
  </item> 
  <item>
   <title><![CDATA[Insert More Images : Hi!  i need Add more images .tif...]]></title>
   <link>http://www.quickpdf.org/forum/insert-more-images_topic1971_post8378.html#8378</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1705">mabermeo</a><br /><strong>Subject:</strong> 1971<br /><strong>Posted:</strong> 22 Sep 11 at 1:51AM<br /><br />Hi!<br /><br />i need Add more images .tif in only one file .pdf<br /><br />'c:\001-EXP3.tif  = multitif 13 images<br />Code:<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;Call QP.AddImageFromFile("c:\001-EXP3.tif", 3)&nbsp;&nbsp;&nbsp;'--&gt; 3 = Pag. Num.<br />&nbsp;&nbsp;&nbsp;&nbsp;lWidth = QP.ImageWidth()<br />&nbsp;&nbsp;&nbsp;&nbsp;lHeight = QP.ImageHeight()<br />&nbsp;&nbsp;&nbsp;&nbsp;Call QP.SetPageDimensions(lWidth, lHeight)<br />&nbsp;&nbsp;&nbsp;&nbsp;Call QP.DrawImage(0, lHeight, lWidth, lHeight)<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;If QP.SaveToFile("c:\from image.pdf") = 1 Then<br /><br /><br />in the file .PDF only add 1 image not 13<br /><br /><br />Regards!<br />]]>
   </description>
   <pubDate>Thu, 22 Sep 2011 01:51:05 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/insert-more-images_topic1971_post8378.html#8378</guid>
  </item> 
 </channel>
</rss>