delphi 如何产生输出一个变形的图形及文字


本文整理自网络,侵删。

 procedure TForm1.SpeedButton1Click(Sender: TObject);
var
Bmp:Tbitmap;
Rect:Trect;
begin
Bmp:=Tbitmap.Create;
bmp.LoadFromFile('c:\1.bmp');
SetRect(Rect,0,0,self.Image1.Width,self.Image1.Height);
self.Image1.Canvas.StretchDraw(Rect,bmp);
self.Image1.Canvas.Font.Size:=80;
self.Image1.Canvas.Font.Name:='宋体';
SetRect(Rect,0,0,self.Image1.Width,self.Image1.Height);
self.Image1.Canvas.Brush.Style:=bsclear; //使输出的文字没有背景影响
self.Image1.Canvas.TextRect(Rect,0,0,'思');
self.Image1.AutoSize:=false;
self.Image1.Stretch:=true;
self.Image1.Width:=550; //这里可以任意修改图片的大小,可以起到变形的作用。
self.Image1.Height:=550;

self.Label1.Caption:=inttostr(self.Image1.Width);
self.Label2.Caption:=inttostr(self.Image1.Height);

end;

相关阅读 >>

Delphi 关于选择文件路径 selectdirectory 弹出窗口居中的问题

Delphi删除文件

Delphi idhttp 实战用法(tidhttpex)

Delphi 带密匙的字符串加密解密函数(支持中文)

Delphi runtime error 216 程序退出后弹出错误

Delphi fmx关闭安卓程序

Delphi2010中使用pchar时e2010 incompatible types: 'char' and 'ansichar' 错误的处理

Delphi提取网页中的图片

Delphi xe vcl - tlinklabel(链接标签)

Delphi application.processmessages的作用

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...