再学 GDI+[44]: 文本输出 - 字体

本文介绍了一个使用Delphi实现的字体展示程序。通过该程序可以显示计算机中安装的各种字体,并允许用户选择不同的字体进行预览。文章提供了完整的源代码,包括单元文件和窗体文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本例效果图:

26152948_WUqa.gif

代码文件:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    ListBox1: TListBox;
    procedure FormPaint(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure ListBox1Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses GDIPOBJ, GDIPAPI;

var
  FontName: string = '宋体';

procedure TForm1.FormCreate(Sender: TObject);
var
  str: string;
begin
  ListBox1.Align := alRight;
  for str in Screen.Fonts do
    if str[1] <> '@' then
      ListBox1.Items.Add(str);
end;

procedure TForm1.FormPaint(Sender: TObject);
var
  g: TGPGraphics;
  b: TGPBrush;
  font: TGPFont;
  fontFamily: TGPFontFamily;
begin
  g := TGPGraphics.Create(Canvas.Handle);
  b := TGPSolidBrush.Create(aclRed);
  fontFamily := TGPFontFamily.Create(FontName);
  font := TGPFont.Create(fontFamily, 48, FontStyleBold);

  g.DrawString('Delphi', -1, font, MakePoint(5.0,20.0), b);
  Text := Format('Height: %f', [font.GetHeight(g)]);

  fontFamily.Free;
  font.Free;
  b.Free;
  g.Free;
end;

procedure TForm1.ListBox1Click(Sender: TObject);
begin
  FontName := ListBox1.Items[ListBox1.ItemIndex];
  Repaint;
end;

end.

 
 
 
 
 

 

 

  
窗体文件:
object Form1: TForm1
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 126
  ClientWidth = 375
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poDesktopCenter
  OnCreate = FormCreate
  OnPaint = FormPaint
  PixelsPerInch = 96
  TextHeight = 13
  object ListBox1: TListBox
    Left = 242
    Top = 8
    Width = 121
    Height = 97
    ItemHeight = 13
    TabOrder = 0
    OnClick = ListBox1Click
  end
end

 
 
 
 
 

 

 

  

转载于:https://my.oschina.net/hermer/blog/319067

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值