游子日月长

笑渐不闻声渐悄,多情却被无情恼!

导航

如何生成旋转字体

procedure TForm1.Button1Click(Sender: TObject);
var lf:tlogfont;
tf:tfont;
begin
   tf:=tfont.Create;
   tf.Assign(button1.font);
   getobject(tf.handle,sizeof(lf),@lf);
   lf.lfEscapement:=450;
   lf.lfOrientation:=450;
   tf.Handle:=createfontindirect(lf);
   button1.parentfont:=false;
   button1.Font.Assign(tf);
   tf.free;
end;

posted on 2017-02-07 15:24  游子日月长  阅读(171)  评论(0编辑  收藏  举报