简单的问题:如何在image上写文本(50分)

  • 主题发起人 主题发起人 lw727
  • 开始时间 开始时间
L

lw727

Unregistered / Unconfirmed
GUEST, unregistred user!
再delphi中有一个例子是仿windows的画图的,但是只能画画,没有在上面写文本(文字)
的功能,如何实现写文本并能保存的功能呢?
(例子在Program files/Borland/Delphi5/Demos/Doc/Graphex 中)
 
image1.Canvas.TextOut(10,10,'fdfdf');
image1.Picture.SaveToFile('e:/123.bmp');
 
with image1 do
begin
canvas.Text(x,y,'text');
Picture.SavetoFile('c:/test.bmp');
end;
 
谢谢两位
 
后退
顶部