<?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 : Conversion from 7.26 to 8.15</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 : Conversion from 7.26 to 8.15]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 17:07:17 +0000</pubDate>
  <lastBuildDate>Tue, 15 May 2012 03:33:30 +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=2264</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[Conversion from 7.26 to 8.15 : Thanks. Working on code that will...]]></title>
   <link>http://www.quickpdf.org/forum/conversion-from-726-to-815_topic2264_post9591.html#9591</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1370">Luke</a><br /><strong>Subject:</strong> 2264<br /><strong>Posted:</strong> 15 May 12 at 3:33AM<br /><br />Thanks. Working on code that will go into production later this week. Would rather not use beta code. Easier just to use 256-bit encryption. Everyone should have upgraded to Acrobat 9 anyway.]]>
   </description>
   <pubDate>Tue, 15 May 2012 03:33:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/conversion-from-726-to-815_topic2264_post9591.html#9591</guid>
  </item> 
  <item>
   <title><![CDATA[Conversion from 7.26 to 8.15 : It&amp;#039;s looks like 8.16 beta...]]></title>
   <link>http://www.quickpdf.org/forum/conversion-from-726-to-815_topic2264_post9590.html#9590</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=121">Wheeley</a><br /><strong>Subject:</strong> 2264<br /><strong>Posted:</strong> 15 May 12 at 3:03AM<br /><br />It's looks like 8.16 beta 1 might have fixed it. Reviewing the change log it says that made a change to 128-bit AES encryption. I would try that version and see if your issue goes away.<br><br>Wheeley<br>]]>
   </description>
   <pubDate>Tue, 15 May 2012 03:03:50 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/conversion-from-726-to-815_topic2264_post9590.html#9590</guid>
  </item> 
  <item>
   <title><![CDATA[Conversion from 7.26 to 8.15 : I am converting from 7.26 to 8.15...]]></title>
   <link>http://www.quickpdf.org/forum/conversion-from-726-to-815_topic2264_post9589.html#9589</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1370">Luke</a><br /><strong>Subject:</strong> 2264<br /><strong>Posted:</strong> 15 May 12 at 12:35AM<br /><br />I am converting from 7.26 to 8.15 using Delphi 2007. My code is to allow open but only allow printing. So I had two constants defined:<div><div>&nbsp; OWNER_PASSWORD = 'test owner password';</div><div>&nbsp; USER_PASSWORD = '';</div><div>and the following code:</div><div><div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">var</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; iPermissions: integer;</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; iResult: integer;</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">begin</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; iPermissions := FPDF.EncodePermissions( 1, &nbsp; &nbsp; // Yes - CanPrint</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0, &nbsp; &nbsp; // No &nbsp;- CanCopy</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0, &nbsp; &nbsp; // No &nbsp;- CanChange</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0, &nbsp; &nbsp; // No &nbsp;- CanAddNotes</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0, &nbsp; &nbsp; // No &nbsp;- CanFillFields</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0, &nbsp; &nbsp; // No &nbsp;- CanCopyAccess</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0, &nbsp; &nbsp; // No &nbsp;- CanAssemble</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1 ); &nbsp; // Yes - CanPrintFull</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; iResult := FPDF.Encrypt( OWNER_PASSWORD, USER_PASSWORD, 2, iPermissions );</font></div></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; FPDF.SaveToFile( 'test.pdf' );</font></div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">end;</font></div><div><br></div></div></div><div>That code works with 7.26. However under 8.15 I am unable to open the saved file with Acrobat Reader, even with the password. I checked the return codes of each function and no errors were reported. However, if I change the Encrypt function to use 256 AES Encryption, i.e.</div><div><div><font face="Arial, Helvetica, sans-serif" size="2" color="#0000ff">&nbsp; FPDF.Encrypt( OWNER_PASSWORD, USER_PASSWORD, 3, iPermissions );</font></div></div><div>everything is fine. I can open the file without password and I am only able to print.</div><div><br></div><div>Luke</div><div><br></div>]]>
   </description>
   <pubDate>Tue, 15 May 2012 00:35:42 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/conversion-from-726-to-815_topic2264_post9589.html#9589</guid>
  </item> 
 </channel>
</rss>