Do you own a Debenu Quick PDF Library 12/11/10/9/8/7? Upgrade to Debenu Quick PDF Library 13!

Foxit Quick PDF Library

Delphi 2010 Support Coming Soon

September 15, 2009

The current version of Quick PDF Library isn’t fully compatible with Delphi 2010, however, we’re working on a new compatible version which should be ready by the end of the year.

Delphi 2010

Free Upgrade

The upgrade to the Delphi 2010 compatible version of our PDF SDK will be free for all owners of a version 7.x license. For any customers who purchase a full license or an upgrade for version 7.x now, you will also receive a free upgrade to the Delphi 2010 compatible version when it’s released.

By Rowan | Comments (3) | Posted in News,Quick PDF Library

Quick PDF Library 7.16 Released

September 14, 2009

Quick PDF Library 7.16 has been released and is now ready for download from the updates page. The new version contains over twenty new functions, important bug fixes and a number of customer-requested feature enhancements, such as the ability to output PDFs as TIFFs and the ability to insert, append and count columns and rows in tables. Plus much more.

New Features and Improvements

  • New! GetObjectCount function
  • New! GetObjectCount function
  • New! GetObjectSource function
  • New! DAOpenFromStream function
  • New! DASaveToStream function
  • New! DAGetObjectCount function
  • New! DAGetObjectSource function
  • New! DAGetFormFieldCount function
  • New! DAGetFormFieldValue function
  • New! AppendTableRows function
  • New! AppendTableColumns function
  • New! InsertTableRows function
  • New! InsertTableColumns function
  • New! GetTableRowCount function
  • New! GetTableColumnCount function
  • New! AppendTableRows function
  • New! AppendTableColumns function
  • New! FontFamily function
  • New! DeleteAnnotation function
  • New! CloneOutlineAction function
  • New! GetActionType function
  • New! GetOutlineActionID function
  • New! GetAnnotActionID function
  • TIFF images optionally loaded using GDI+
  • TIFF output added to renderer
  • File names in link annotations (eg. AddLinkToFile) can now be Unicode (/UF key used in file spec dictionary)
  • NewCustomPrinter bug fix
  • HTML text font size bug fix
  • Delphi 2009 string cast bug fix
  • Fixed bug signing a PDF produced by Word 2007
  • Fixed bug with RenderDocumentToFile page number substitution
  • New pixel offset mode for rendering images to eliminate white lines
  • C# DLL wrapper handles unicode filenames correctly
  • Fixed memory leak bug: rendering documents with many large images
  • Fixed memory leak bug in DLL allocation
  • Bug fix for PDFs with comments in the cross reference stream
  • Improvements to GetPageLGIDictContent
  • Bug fix AddSubsettedFont
  • AddToFileList now supports Unicode file names

Free Upgrade

Version 7.16 is a minor update and therefore all existing version 7.x license owners are entitled to a free upgrade. Owners of older versions of Quick PDF Library can upgrade online here for $149.40.

Discuss The New Version

We’re proud of the community that has formed around Quick PDF Library, so we’d like to encourage new users to join in the fun and discuss the latest version of Quick PDF Library over at QuickPDF.Porg.

P.S. In version 7.17 we’ll be introducing much improved support for EMF/WMF files. Stay tuned!

By Rowan | Comments (1) | Posted in News,Quick PDF Library,Releases

Support For Unicode Characters In Filenames And Paths

August 30, 2009

你好

مرحبا

おはよう ございます

привет

HALLÅ

हैलो

What have I written above you might be wondering? Well, I’ve tried* to write hello in a few different languages to highlight the new support for Unicode characters in filenames and paths — which was introduced with the release of version 7.15 of Quick PDF Library. The great news is that all of the above characters can now be properly handled in filenames and paths by all editions of our SDK.

There are many different ways to encode Unicode characters. One way is to use strings with 16-bit characters. COM/ActiveX uses 16-bit characters, so adding Unicode support for the ActiveX edition of the library was easy.

For the Delphi and DLL editions, the strings have always been 8-bit characters and unfortunately we can’t change the definition of functions to use strings with 16-bit characters as this would cause issues with backwards compatibility.

This means that when using the Delphi and DLL editions and working with Unicode characters, you need to encode your file names with UTF8 encoding, as mentioned in the function reference.

Different languages will have different functions to do the UTF8 encoding. For Delphi, the Utf8Encode function can be used, for example:

var
 FileNameW: WideString;
 FileNameA: AnsiString;
begin
 FileNameW := WideString('C:\unicode') + WideChar(20081) +
WideString('\test.pdf');
 FileNameA := Utf8Encode(FileNameW);
 QP.SaveToFile(FileNameA);
end;

That would save the file in the “C:\unicode乱\test.pdf” folder.

So far the response to the addition of this hotly demanded feature has been has been fantastic. If you have any other features that you really want to see added to Quick PDF Library in the not-to-distant future, visit our feedback page where you can suggest new features and vote on features that other customers have suggested.

* I hope I’ve written hello — if I’ve written something else, please let me know!

By Rowan | Comments Off on Support For Unicode Characters In Filenames And Paths | Posted in News,Quick PDF Library,Tips & Tutorials

Overzealous Spam Filter

August 27, 2009

Unfortunately it looks like a few new support queries over the past couple of weeks have been gobbled up by our Overzealous Spam Filter and subsequently deleted. We’ve managed to retrieve messages from the spam filter that were caught in the past 7 days, but some messages sent before last week, cannot be retrieved.

If you have sent us a support query and have received no response — including no automated response from our support system which would have included your support case number — please try sending us your support query again.

We’ve now implemented a not-quite-so Overzealous Spam Filter, so this problem shouldn’t occur again.

Apologies for any inconvenience this issue has caused.

By Rowan | Comments Off on Overzealous Spam Filter | Posted in News

Quick PDF Library 7.15 Released

August 6, 2009

Quick PDF Library 7.15 has been released and is now ready for download from the updates page.

The new version includes a number of new exciting features and improvements, such as unicode support for filenames, support for GeoPDF dictionaries, improved EMF/WMF importing, font rendering and more.

New Features and Improvements

  • New SetBaseURL function
  • GeoPDF support. New related functions: AddLGIDictToPage, GetPageLGIDictCount, GetPageLGIDictContent and DeletePageLGIDict
  • New ImportEMFFromFile function
  • New SetAnnotStrProperty function
  • Renderer allows fonts to be direct objects as well as indirect objects
  • Improved font matching in renderer
  • Implemented Deflate on image data with predictor and BitsPerComponent = 4

On top of these new exciting features and improvements, there were a number of minor improvements and bug fixes.

Free Upgrade

Version 7.15 is a minor update and therefore all existing version 7.x license owners are entitled to a free upgrade. Owners of older versions of Quick PDF Library can upgrade online here for $149.40.

Discuss The New Version

We’re proud of the community that has formed around Quick PDF Library, so we’d like to encourage new users to join in the fun and discuss the latest version of Quick PDF Library over at QuickPDF.org.

By Rowan | Comments Off on Quick PDF Library 7.15 Released | Posted in News,Quick PDF Library,Releases

Quick PDF Library 7.14 Released

June 16, 2009

Quick PDF Library 7.14 has been released and is ready for download from the updates page.

The new version includes powerful support for creating tables in your PDFs, as well as numerous new improvements and bug fixes.

New Features and Improvements:

  • Delphi 2009 improvements
  • Fixed CFF font decoding bug
  • Bug fix for fonts with /Differences array and no /ToUnicode entry
  • Bug fix for non-embedded fonts with slightly different standard font names
  • Bug fix for matching fonts characters with capital letters
  • New GetCanvasDC and LoadFromCanvasDC functions
  • New GetXFAFormFieldNames function
  • New GetXFAFormFieldName function
  • New GetXFAFormFieldCount function
  • Updated the docs for the XFA functions
  • New GetFontObjectNumber function
  • New SetAdvancePassword function
  • New CreateTable function
  • New SetTableColumnWidth function
  • New SetTableRowHeight function
  • New SetTableCellBorderColor function
  • New SetTableCellBorderColorCMYK function
  • New SetTableCellBorderWidth function
  • New SetTableCellBackgroundColor function
  • New SetTableCellBackgroundColorCMYK function
  • New SetTableCellPadding function
  • New SetTableCellAlignment function
  • New SetTableCellContent function
  • New SetTableCellTextColor function
  • New SetTableCellTextColorCMYK function
  • New SetTableCellTextSize function
  • New SetTableBorderColor function
  • New SetTableBorderColorCMYK function
  • New SetTableBorderWidth function
  • New MergeTableCells function
  • New DrawTableRows function
  • New GetTableLastDrawnRow function
  • New GetTableCellStrProperty function
  • New GetTableCellIntProperty function
  • New GetTableCellDblProperty function

Discuss The New Version

We’re proud of the community that has formed around Quick PDF Library, so we’d like to encourage new users to join in the fun and discuss the latest version of Quick PDF Library over at QuickPDF.org.

By Rowan | Comments Off on Quick PDF Library 7.14 Released | Posted in News,Quick PDF Library,Releases

QuickPDF.org Forum Maintenance

May 29, 2009

We’re in the process of moving the QuickPDF.org forum to another server, so for the next 24-48 hours it will be closed for maintenance. Please accept our sincere apologies for any inconvenience this may cause.

Estimated downtime period: May 29-31, 2009.

Update: The forum maintenance has been completed and the QuickPDF.org forum is once again open for your questions.

By Rowan | Comments Off on QuickPDF.org Forum Maintenance | Posted in News

Quick PDF Library 7.14 Beta 2 Released

May 28, 2009

Quick PDF Library 7.14 beta 2 has been released and is ready for testing. This new beta includes a number of new features and bug fixes.

The biggest new feature in this release is the ability to create tables in your PDFs — this will make generating PDF reports from databases using Quick PDF Library a lot easier. We’ve also included enhanced support for XFA PDF forms and will continue to make improvements in this area in the future.

Click on the button below to download the 7.14 beta 2 build:

List of changes

9 May 2009

  • Added GetXFAFormFieldNames function
  • Added GetXFAFormFieldName function
  • Added GetXFAFormFieldCount function

10 May 2009

  • Updated the docs for the XFA functions

13 May 2009

  • Added GetFontObjectNumber function

15 May 2009

  • Bug fix for fonts with /Differences array and no /ToUnicode entry
  • Bug fix for non-embedded fonts with slightly different standard font names
  • Bug fix for matching fonts characters with capital letters

21 May 2009

  • New SetAdvancePassword function

22 May 2009

  • Bug fix for saving PDFs that had an XRefStm – key now removed from trailer

23 May 2009

  • Added CreateTable function
  • Added SetTableColumnWidth function
  • Added SetTableRowHeight function
  • Added SetTableCellBorderColor function
  • Added SetTableCellBorderColorCMYK function
  • Added SetTableCellBorderWidth function
  • Added SetTableCellBackgroundColor function
  • Added SetTableCellBackgroundColorCMYK function
  • Added SetTableCellPadding function
  • Added SetTableCellAlignment function
  • Added SetTableCellContent function
  • Added SetTableCellTextColor function
  • Added SetTableCellTextColorCMYK function
  • Added SetTableCellTextSize function
  • Added SetTableBorderColor function
  • Added SetTableBorderColorCMYK function
  • Added SetTableBorderWidth function
  • Added MergeTableCells function
  • Added DrawTableRows function
  • Added GetTableLastDrawnRow function
  • Added GetTableCellStrProperty function
  • Added GetTableCellIntProperty function
  • Added GetTableCellDblProperty function

Feedback!

Any feedback large or small is appreciated. We’ll shortly be planning the next round of exciting new features for Quick PDF Library, so we’d really like to know what you want to see added to the SDK. Don’t be shy, email us at support@quickpdflibrary.com and we’ll get back to you asap.

By Rowan | Comments (1) | Posted in News,Quick PDF Library,Releases

Upcoming Price Revision

May 26, 2009

Important – after May 31st, there’ll be a few changes with the Quick PDF Library licensing. We believe that the new structure will provide a fair match of price to value, and allow us to provide the best service possible to our customers.

The price of Quick PDF Library single-developer license will be increasing to $249 USD, however, we will also be introducing a not-for-profit and educational price at a discounted $149 USD.

At the same time, we will be creating a multi-developer license which will replace the 1-5, and 5-10 licenses. This new license will allow you to have as many people in your team (from a few to 10) work with Quick PDF Library at no extra cost.

The Delphi Source Code price will be dropping to $1299 USD – this gives those who want to get their hands dirty more of a chance to do so.

… And as per usual, all of our products are available at a 40% discount for previous owners.

Standard Support

All of our products come with free “best efforts” support as follows:

  • 3 month upgrade insurance
  • 48 hour email support M-F/fair use
  • Minor upgrades free

Premium Support (+25%)

For an extra 25% on your purchase price, you can receive premium support which means you get:

  • 12-24 hour email support M-F, fair use
  • 12 month upgrade insurance (minor+major)
  • Priority bug fixes

So let’s get it out of the way

We believe in considering the total cost of purchase … including support. At the revised pricing, we can ensure that we have the resources in place to make sure when you ask a question, we’re able to answer it in a timely fashion.

If you have any questions about upgrading please email our sales team at sales@quickpdflibrary.com.

By Rowan | Comments Off on Upcoming Price Revision | Posted in News,Quick PDF Library

Quick PDF Library 7.13 Released

May 4, 2009

Quick PDF Library 7.13 is now available for download and purchase.

The new version primarily includes bug fixes and performance improvements that were reported on the QuickPDF.org forum over the past few years — as well as a number of new functions and official support for Delphi 2009.

What’s New

  • Delphi 2009 support
  • New functionality for GetAnnotStrProperty and GetAnnotIntProperty to handle GoToR and Launch annotations and speed improvements
  • New EmbeddedFileCount function
  • New GetEmbeddedFileStrProperty function
  • New GetEmbeddedFileIntProperty function
  • New GetEmbeddedFileContentToFile function
  • New GetEmbeddedFileContentToString function
  • New GetEmbeddedFileContentToStream function
  • Improvements to internal outline navigation
  • New GetNamedDestination function
  • Internal support for name objects directly following the obj keyword
  • Bug fix and improvements to encryption fingerprint functions
  • Option to load images using GDI+ instead of internal image handling functions
  • Support for type 3 functions
  • Improvements to image decoding
  • Support for inverted JPEG palettes
  • Faster page location when page tree is a single array
  • Support for loading 8-bit alpha mask from PNG images
  • Better rendering of encrypted documents
  • Support for alternate ICC based color space in renderer
  • Support for W=4 in cross reference stream
  • Speed improvements to object decoding
  • Bug fix for text extraction with option 4 to return single words

Coming soon: 64-bit support

Behind the scenes we’ve been working on a solution for using Quick PDF Library in a 64-bit environment. We’re excited to say — and we know you will be too, since we’ve been receiving an increasing number of requests for such a solution. If you’re interested in doing some testing with this new version, email us at support@quickpdflibrary.com and we’ll happily send it to you.

UPDATE: There is now a 64-bit compatible version of Quick PDF Library available as part of version 8. Read more here. Native 64-bit support is provided for the DLL, ActiveX and Delphi editions.

Upgrades

The upgrade to 7.13 is free for owners of a 7.x license. Owners of older licenses can purchase an upgrade to the new version for US$89.40.

Quick PDF Library Newsletter

If you want to keep up-to-date with all things related to Quick PDF Library, we suggest that you subscribe to our weekly Quick PDF Library Newsletter. In each weeks newsletter we try to keep our users informed about the libraries progress, as well as provide various PDF tips and tricks that can help everyone get the most out of the library.

Feedback!

As always, we’d like to hear from you. Feedback, good and bad, is always appreciated. So let us know what you think about Quick PDF Library.

By Rowan | Comments (2) | Posted in News,Quick PDF Library,Releases

« Older PostsNewer Posts »