unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) ListBox1: TListBox; Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); end; var Form1: TForm1; implementation {$R *.dfm} uses GdiPlus; //通过 IGPInstalledFontCollection 获取字体列表 procedure TForm1.Button1Click(Sender: TObject); var FontCollection: IGPInstalledFontCollection; FontFamily: IGPFontFamily; begin FontCollection := TGPInstalledFontCollection.Create; Text := Format('字体总数: %d', [FontCollection.Families.Count]); ListBox1.Clear; for FontFamily in FontCollection.Families do begin ListBox1.Items.Add(FontFamily.FamilyName); end; end; //通过 Screen 获取字体列表 procedure TForm1.Button2Click(Sender: TObject); begin Text := Format('字体总数: %d', [Screen.Fonts.Count]); ListBox1.Items.Assign(Screen.Fonts); end; end.
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步