拷贝剪贴板图像到窗体
2020-12-13 05:38
标签:http color strong for div ar file web 拷贝剪贴板图像到窗体,搜素材,soscw.com 拷贝剪贴板图像到窗体 标签:http color strong for div ar file web 原文地址:http://www.cnblogs.com/xe2011/p/3876035.html
var
Bmp : TBitmap;
begin
Bmp := TBitMap.create;
try
if Clipboard.HasFormat(CF_BITMAP) then
begin
Bmp.LoadFromClipBoardFormat(CF_BITMAP,ClipBoard.GetAsHandle(CF_BITMAP),0);
Canvas.Draw(0,0,bmp);
Bmp.SaveToFile(‘C:\ClipBord.bmp‘);
end;
finally
Bmp.free;
end;
end;