瑞文文摘
返回首页 | 手机用户请点此访问手机版
关键字:图片翻转,delphi源码 | 时间:2012/10/13

图片翻转的delphi源码

图片翻转的delphi源码
procedure TForm1.btnApplyClick(Sender: TObject);
var
Bitmap:TBitmap;
begin
Bitmap:=TBitmap.Create;
Bitmap.Assign(Image1.Picture.Bitmap);
StretchBlt(Bitmap.Canvas.Handle,0,0,Image1.Width,Image1.Height,
Image1.Canvas.Handle,Image1.Width,0,-1*Image1.Width,
Image1.Height,SRCCOPY);
Image1.Canvas.Draw(0,0,Bitmap);
Bitmap.Free;
end;




上一篇:【delphi源码】在标题栏中加入按钮的delphi源码

下一篇:【冀教版教案】大海的歌

Copyright © 瑞文软件工作室 冀ICP备17033643号 联系我们