Do you own a Debenu Quick PDF Library version 7, 8, 9, 10, 11, 12, 13 or iSEDQuickPDF license? Upgrade to Debenu Quick PDF Library 14 today!

Debenu Quick PDF Library - PDF SDK Community Forum Homepage
Forum Home Forum Home > For Users of the Library > I need help - I can help
  New Posts New Posts RSS Feed - List characters in a subset font
  FAQ FAQ  Forum Search   Register Register  Login Login

List characters in a subset font

 Post Reply Post Reply
Author
Message
rweetch View Drop Down
Senior Member
Senior Member


Joined: 22 Feb 11
Status: Offline
Points: 173
Post Options Post Options   Thanks (0) Thanks(0)   Quote rweetch Quote  Post ReplyReply Direct Link To This Post Topic: List characters in a subset font
    Posted: 18 May 18 at 4:06PM
Is there anyway to get a list of the characters that are included in an embedded subset font? 
Back to Top
kevindebenu View Drop Down
Moderator Group
Moderator Group
Avatar

Joined: 16 Apr 12
Status: Offline
Points: 7
Post Options Post Options   Thanks (0) Thanks(0)   Quote kevindebenu Quote  Post ReplyReply Direct Link To This Post Posted: 23 May 18 at 2:19PM
There isn't an existing QPL function to give the result directly.

It should be possible to loop through all the characters 0x0000 to 0xFFFF and use QP.GetTextWidth to find the width of just that character.

If the width is zero, it can be assumed that character isn't in the subset character list.

  std::wstring CharSet = L"";
  for (int C = 0x0000; C <= 0xFFFF; C++)
  {
    if ((C % 100) == 0)
    {
      std::cout << C << std::endl;
    }
    if (QP.GetTextWidth((wchar_t)C + L"") > 0)
    {
      CharSet = CharSet + (wchar_t)C;
    }
  }


Edited by kevindebenu - 23 May 18 at 2:21PM
Back to Top
rweetch View Drop Down
Senior Member
Senior Member


Joined: 22 Feb 11
Status: Offline
Points: 173
Post Options Post Options   Thanks (0) Thanks(0)   Quote rweetch Quote  Post ReplyReply Direct Link To This Post Posted: 23 May 18 at 2:48PM
Thats being added to my class Helper! well, a Delphi version anyway.

thanks. 


Edited by rweetch - 23 May 18 at 2:49PM
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 11.01
Copyright ©2001-2014 Web Wiz Ltd.

Copyright © 2017 Debenu. Debenu Quick PDF Library is a PDF SDK. All rights reserved. AboutContactBlogSupportOnline Store