Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to get a list of all available Truetype fonts Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
12-Oct-02
Category
Graphic
Language
Delphi 2.x
Views
104
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Jonas Bilinkevicius

I have a situation where I'd like to loop through about 100 font files and extract 
their friendly name from the file. Has anyone ever done this?

Answer:

Assuming that all fonts are already installed, you need to use EnumFontFamilies and 
a callback function:

1   {the callback function prototype}
2   
3   function FontEnumProc(LogFont: PEnumLogFont; TextMetrics: PNewTextMetric;
4     FontType: Integer; lParam: LPARAM): Integer; stdcall;
5   
6   implementation
7   
8   function FontEnumProc(LogFont: PEnumLogFont; TextMetrics: PNewTextMetric;
9     FontType: Integer; lParam: LPARAM): Integer; stdcall;
10  begin
11    {add the font name and its font type to a list box}
12    Form1.ListBox1.Items.AddObject(TEnumLogFont(LogFont^).elfLogFont.lfFaceName,
13      TObject(FontType);
14      {continue enumeration}
15      Result := 1;
16  end;
17  
18  procedure TForm1.FormClick(Sender: TObject);
19  begin
20    EnumFontFamilies(Form1.Canvas.Handle, nil, @FontEnumProc, 0);
21  end;


If the fonts are not installed, you can install them temporarely.

			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC