再学 GDI+[42]: 文本输出 - 字号单位

本例效果图:

o_86165.gif

代码文件:
unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    RadioGroup1: TRadioGroup;
    TrackBar1: TTrackBar;
    procedure FormCreate(Sender: TObject);
    procedure FormPaint(Sender: TObject);
    procedure RadioGroup1Click(Sender: TObject);
    procedure TrackBar1Change(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses GDIPOBJ,GDIPAPI,TypInfo;

procedure TForm1.FormCreate(Sender: TObject);
var
  i: Integer;
begin
  for i := 0 to 6 do
    RadioGroup1.Items.Add(GetEnumName(TypeInfo(TUnit), i));
  RadioGroup1.ItemIndex := 2;

  RadioGroup1.Buttons[0].Enabled := False;
  RadioGroup1.Buttons[1].Enabled := False;
  RadioGroup1.Buttons[4].Enabled := False;
  RadioGroup1.Buttons[5].Enabled := False;

  TrackBar1.ShowSelRange := False;
  TrackBar1.Min := 1;
  TrackBar1.Max := 100;
  TrackBar1.Position := 22;
end;

procedure TForm1.FormPaint(Sender: TObject);
var
  g: TGPGraphics;
  b: TGPBrush;
  font: TGPFont;
begin
  g := TGPGraphics.Create(Canvas.Handle);
  b := TGPSolidBrush.Create(aclDarkOrange);

  font := TGPFont.Create('Arial Black',
                          TrackBar1.Position,
                          FontStyleBoldItalic,
                          TUnit(RadioGroup1.ItemIndex) {字号单位, 默认是像素: UnitPixel}
                        );
  g.DrawString('Delphi', -1, font, MakePoint(5.0, 5), b);

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

procedure TForm1.RadioGroup1Click(Sender: TObject);
begin
  Repaint;
end;

procedure TForm1.TrackBar1Change(Sender: TObject);
begin
  Repaint;
  Text := IntToStr(TrackBar1.Position);
  TrackBar1.Refresh;
end;

end.
窗体文件:
object Form1: TForm1
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 147
  ClientWidth = 336
  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 RadioGroup1: TRadioGroup
    Left = 237
    Top = 0
    Width = 99
    Height = 147
    Align = alRight
    Caption = 'RadioGroup1'
    TabOrder = 0
    OnClick = RadioGroup1Click
    ExplicitLeft = 240
  end
  object TrackBar1: TTrackBar
    Left = 0
    Top = 126
    Width = 241
    Height = 45
    TabOrder = 1
    OnChange = TrackBar1Change
  end
end
坐标单位类型表:

Delphi微软说明
UnitWorldWorld将世界坐标系单位指定为度量单位。
UnitDisplayDisplay指定显示设备的度量单位。通常,视频显示使用的单位是像素;打印机使用的单位是 1/100 英寸。
UnitPixelPixel将设备像素指定为度量单位。
UnitPointPoint将打印机点(1/72 英寸)指定为度量单位。
UnitInchInch将英寸指定为度量单位。
UnitDocument Document 将文档单位(1/300 英寸)指定为度量单位。
UnitMillimeterMillimeter将毫米指定为度量单位。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值