delphi 把整个窗体保存为图片的方法


本文整理自网络,侵删。

 unit Unit1;

interface

uses
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}

procedure TForm1.Button1Click(Sender: TObject);
var
bit: TBitmap;
begin
bit := TBitmap.Create;
bit.Width := Width;
bit.Height := Height;
BitBlt(bit.Canvas.Handle, 0, 0, Width, Height, GetWindowDC(Handle), 0, 0, SRCCOPY);
bit.SaveToFile('c:\temp\Form1.bmp');
bit.Free;
end;

end.

相关阅读 >>

Delphi 释放资源文件

Delphi中用拼音首字符序列来实现检索功能

Delphi远程注入dll方法

开源Delphi组件,框架,库,资源等。

Delphi版pspterminateprocess驱动源码

Delphi 递归算法遍历文件

Delphi读写xml的技巧

Delphi实现抓屏压缩并保存桌面图片

rightstr 返回字符串右边指定个数的新字符(串)

Delphi ntfs usn 磁盘文件搜索

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



打赏

取消

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

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

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

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

评论

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