博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
捕捉全屏图像
阅读量:6607 次
发布时间:2019-06-24

本文共 717 字,大约阅读时间需要 2 分钟。

  hot3.png

unit Unit1;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs, StdCtrls;type  TForm1 = class(TForm)    Button1: TButton;    procedure Button1Click(Sender: TObject);  end;var  Form1: TForm1;implementation{$R *.dfm}//捕捉全屏幕图像并保存到: c:\temp\Screen.bmpprocedure TForm1.Button1Click(Sender: TObject);var  bit: TBitmap;  DC: HDC;  cvs: TCanvas;begin  bit := TBitmap.Create;  bit.SetSize(Screen.Width, Screen.Height);  DC := GetDC(0);  cvs := TCanvas.Create;  cvs.Handle := DC;  bit.Canvas.CopyRect(Screen.DesktopRect, cvs, Screen.DesktopRect);  bit.SaveToFile('c:\temp\Screen.bmp');  ReleaseDC(0, DC);  cvs.Free;  bit.Free;end;end.

转载于:https://my.oschina.net/hermer/blog/320916

你可能感兴趣的文章
VirtualBox移植
查看>>
HTTP要被抛弃? 亚洲诚信携手宝塔开启HTTPS加密快速通道
查看>>
Chrome: 完全移除对WoSign和StartCom证书的信任
查看>>
RecyclerView侧滑删除功能
查看>>
记一个hystrix异常
查看>>
9.02-Spring IOC 容器中Bean的生命周期
查看>>
6.6 tar打包
查看>>
微信自动抢红包的实现(Demo已增加查看TopActivity功能)
查看>>
Spring MVC核心技术
查看>>
TCP协议如何保证传输的可靠性
查看>>
Spring Cloud云架构 - SSO单点登录之OAuth2.0 登出流程(3)
查看>>
编程之美 测试赛 石头剪刀布
查看>>
签名问题
查看>>
软件开发各阶段交付物列表
查看>>
2018-05-24 Linux学习
查看>>
ntp服务器的搭建
查看>>
我的友情链接
查看>>
sysstat 安装
查看>>
六、nginx搭建织梦DedeCms网站
查看>>
Tair学习小记
查看>>