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

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