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 idhttp用法详解

Delphi 中tresourcestream流使用

Delphi中destroy, free, freeandnil, release用法和区别

Delphi 关闭指定窗口

Delphi 字符串连接

Delphi apihook

Delphi 提升进程权限到sedebugprivilege

Delphi中对进程内存进行读写

Delphi doc转txt

Delphi xe tparallel.for循环

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



打赏

取消

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

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

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

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

评论

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