<?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 : Merge PDFs with background 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 : Merge PDFs with background images]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 03 Aug 2026 03:54:10 +0000</pubDate>
  <lastBuildDate>Fri, 16 Mar 2018 16:05:41 +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=3551</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[Merge PDFs with background images : ... there was indeed an unrecognizable...]]></title>
   <link>http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14157.html#14157</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3013">Franco</a><br /><strong>Subject:</strong> 3551<br /><strong>Posted:</strong> 16 Mar 18 at 4:05PM<br /><br />&nbsp;... there was indeed an unrecognizable white filled curve behind the Text surfacing the whole page!<br>Unbelievable. <br>Thx ;-)<br><br>]]>
   </description>
   <pubDate>Fri, 16 Mar 2018 16:05:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14157.html#14157</guid>
  </item> 
  <item>
   <title><![CDATA[Merge PDFs with background images : Doesn&amp;#039;t work, there are still...]]></title>
   <link>http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14156.html#14156</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3013">Franco</a><br /><strong>Subject:</strong> 3551<br /><strong>Posted:</strong> 16 Mar 18 at 10:12AM<br /><br />Doesn't work, there are still white rectangles of the merged pdf over the background images.<br><br>Using Quick library11.15 with Clarion.<br>Here the Code:<br><br>QPL.ClearFileList('List1')<br>Loop Zae = 1 to ...<br>&nbsp;&nbsp;&nbsp;&nbsp; ....<br>&nbsp;&nbsp;&nbsp; QPL.AddToFileList('List1', pathname-array)<br>End<br><br>DateiSumme = QPL.MergeFileList('List1', PDFDateinameNeu)<br>...<br>&nbsp;If Not QPL.LoadFromFile(PDFDateinameNeu,'')<br>&nbsp;&nbsp;&nbsp; Exit<br>End<br><br>!New page in new main document<br>Akt_Seite += 1<br>QPL.InsertPages(Akt_Seite, 1) <br>QPL.SelectPage(Akt_Seite)<br>QPL.SetMeasurementUnits(1)<br>QPL.SetOrigin(1)<br>QPL.SetPageDimensions(BOG:Bogengroesse_X, BOG:Bogengoesse_Y) <br><br>!capture single pdf for merging<br>PDF_Seite += 1<br>QPL.SelectPage(PDF_Seite)<br>QPL.SetMeasurementUnits(1)<br>PDF_Hoehe = QPL.GetPageBox(1,3)<br>PDF_Breite = QPL.GetPageBox(1,2)<br>PDF_ID = QPL.CapturePage(PDF_Seite)<br>....<br><br>!merging file x-times on one page of the new doc. <br>QPL.SelectPage(Akt_Seite)<br>QPL.DrawCapturedPage(PDF_ID, BOG:StartPosX, BOG:StartPosY, PDF_Breite, PDF_Hoehe)<br>....<br><br>!draw background images<br>HintergrundStream = QPL.NewContentStream()<br>QPL.SelectContentStream(HintergrundStream)<br>QPL.DrawImage(BauPosX, BauPosY, BAU:Bild_Breite, BAU:Bild_Hoehe)<br><br>...<br>!Move Image Stream&nbsp; to 1 <br>If HintergrundStream &gt; 0<br>&nbsp;&nbsp;&nbsp; QPL.MoveContentStream(HintergrundStream, 1)<br>&nbsp;&nbsp;&nbsp;&nbsp; HintergrundStream = 0<br>&nbsp;&nbsp;&nbsp;&nbsp; QPL.CombineContentStreams()<br>End<br><br>!PDF-Information<br>QPL.SetInformation(0, '1.4')<br>QPL.SetInformation(5, 'Demo Tools Franco')<br>QPL.SetInformation(6, 'Demo-Manager xyz')<br><br>!Save PDF<br>QPL.SaveToFile(Clip(PDFDateinameNeu))<br>]]>
   </description>
   <pubDate>Fri, 16 Mar 2018 10:12:20 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14156.html#14156</guid>
  </item> 
  <item>
   <title><![CDATA[Merge PDFs with background images : Have seen something in the docs...]]></title>
   <link>http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14154.html#14154</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3013">Franco</a><br /><strong>Subject:</strong> 3551<br /><strong>Posted:</strong> 15 Mar 18 at 4:49PM<br /><br />Have seen something in the docs and will give the contentstreams a try.<br>After all pages are merged in the new page of the main, NewContentstream and place the background images there, then Movecontentstream to 1.<br>]]>
   </description>
   <pubDate>Thu, 15 Mar 2018 16:49:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14154.html#14154</guid>
  </item> 
  <item>
   <title><![CDATA[Merge PDFs with background images : Hi,done a job with merging many...]]></title>
   <link>http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14153.html#14153</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3013">Franco</a><br /><strong>Subject:</strong> 3551<br /><strong>Posted:</strong> 15 Mar 18 at 3:13PM<br /><br />Hi,<br><br>done a job with merging many PDF docs together to a single new PDF. All works fine.<br>The PDFs are containing formatted text and a few vector objects like rectangles or cyrcles. <br><br>Now I have to insert background images in the new main document, each merged PDF with an own jpg image as background.<br>The text and vectors of the different merged files should naturally be in front of the background images within the new main document.<br><br>After drawing the image in the new document and then merging, the white background of the merged PDF overlapped the image, so there is a white rectangle (media box) over the image.<br><br>Is there a way to remove the white background of the PDFs before merging, so that only the text and vector objects are moved to the new document ?<br>Other recommendations ?<br><br>Thanks for any advice.<br><br>Frank<br> <br>]]>
   </description>
   <pubDate>Thu, 15 Mar 2018 15:13:05 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/merge-pdfs-with-background-images_topic3551_post14153.html#14153</guid>
  </item> 
 </channel>
</rss>