<?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 : FlattenAnnot still opaque in v10.13</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 : FlattenAnnot still opaque in v10.13]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 17 Jun 2026 22:39:25 +0000</pubDate>
  <lastBuildDate>Fri, 28 Mar 2014 07:30:58 +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=2854</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[FlattenAnnot still opaque in v10.13 : Can you provide the code example...]]></title>
   <link>http://www.quickpdf.org/forum/flattenannot-still-opaque-in-v1013_topic2854_post11582.html#11582</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1239">kk aw</a><br /><strong>Subject:</strong> 2854<br /><strong>Posted:</strong> 28 Mar 14 at 7:30AM<br /><br />Can you provide the code example for Delphi. &nbsp;I am not sure of the&nbsp;DebenuPDFRendererDLL1013.dll function.]]>
   </description>
   <pubDate>Fri, 28 Mar 2014 07:30:58 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/flattenannot-still-opaque-in-v1013_topic2854_post11582.html#11582</guid>
  </item> 
  <item>
   <title><![CDATA[FlattenAnnot still opaque in v10.13 : kk aw,Have you tried opening your...]]></title>
   <link>http://www.quickpdf.org/forum/flattenannot-still-opaque-in-v1013_topic2854_post11581.html#11581</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1483">AndrewC</a><br /><strong>Subject:</strong> 2854<br /><strong>Posted:</strong> 28 Mar 14 at 6:12AM<br /><br />kk aw,<div><br></div><div>Have you tried opening your PDF file in Acrobat ? &nbsp;Your code is working for me if I open the flattened PDF in Acrobat.<br><div><br></div><div>The Highlight annotation uses transparency object and will require the new rendering engine to render correctly if you use any of the Debenu Quick PDF Library rendering functions such as RenderPageToFile etc...</div><div><br></div><div>&nbsp; &nbsp;ret = QP.SetDPLRFileName(@"DebenuPDFRendererDLL1013.dll");</div><div>&nbsp; SelectRenderer(3);</div><div><br></div><div>The extra DLL can be found in the "Rendering and Printing Add-On" directory in your Debenu Quick PDF Library 10.13 installation directory.</div><div><br></div><div>Andrew.&nbsp;</div></div>]]>
   </description>
   <pubDate>Fri, 28 Mar 2014 06:12:34 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/flattenannot-still-opaque-in-v1013_topic2854_post11581.html#11581</guid>
  </item> 
  <item>
   <title><![CDATA[FlattenAnnot still opaque in v10.13 : The FlattenAnnot function in version...]]></title>
   <link>http://www.quickpdf.org/forum/flattenannot-still-opaque-in-v1013_topic2854_post11580.html#11580</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1239">kk aw</a><br /><strong>Subject:</strong> 2854<br /><strong>Posted:</strong> 28 Mar 14 at 12:36AM<br /><br />The FlattenAnnot function in version 10.13 still create an opaque bar when use with the renderto.. function.<div><br></div><div>The codes I use are as follows:</div><div><br></div><div><div>&nbsp; iPageCount:= Qp.PageCount;</div><div>&nbsp; With Qp do</div><div>&nbsp; &nbsp; begin</div><div>&nbsp; &nbsp; &nbsp; For i:= 1 to iPagecount do</div><div>&nbsp; &nbsp; &nbsp; &nbsp; begin</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; QP.SelectPage(i);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; iAnnotCount:= qp.AnnotationCount;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:= iAnnotCount downto 1 do</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; s1:= qp.GetAnnotStrProperty(j, 101);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If sm.equalIC(s1,'Highlight') then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; retval:= qp.FlattenAnnot(j, 0);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if retval = 0 then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage(Format('Annotation No. %d cannot be flattened',&#091;j&#093;));</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; end;</div><div>&nbsp; &nbsp; end;&nbsp;</div><div><br></div><div><br></div></div>]]>
   </description>
   <pubDate>Fri, 28 Mar 2014 00:36:27 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/flattenannot-still-opaque-in-v1013_topic2854_post11580.html#11580</guid>
  </item> 
 </channel>
</rss>