首页 > 其他 > 详细

捕捉整个桌面的图片

时间:2014-07-29 21:03:22      阅读:301      评论:0      收藏:0      [点我收藏+]
捕捉整个桌面的图片 但不捕捉自己这个窗体
bubuko.com,布布扣
 

procedure TForm2.Button3Click(Sender: TObject);
var
  Bitmap: Tbitmap;
  BitmapCanvas: TCanvas;
  dc: HDC;
  DeskTopWidth,DeskTopHeight:Integer;
begin
  DeskTopWidth:= Screen.Width;
  DeskTopHeight:=Screen.Height;

  Panel1.Width:=DeskTopWidth;
  Panel1.Height:=DeskTopHeight;

  Hide;
  Sleep(200);
  Bitmap := TBitmap.Create;
  With Bitmap do
  begin
    Width := DeskTopWidth;
    Height := DeskTopHeight;
    DC := GetDC(0);

    BitmapCanvas := TCanvas.Create;
    BitmapCanvas.Handle := DC;

    Canvas.CopyRect(Rect(0, 0,DeskTopWidth, DeskTopHeight), BitmapCanvas,Rect(0, 0, DeskTopWidth, DeskTopHeight));
    BitmapCanvas.Free;
    ReleaseDC(0, DC);

    Image1.Picture.Bitmap := Bitmap;
    Image1.Width := Width;
    Image1.Height := Height;
    Free;
  end;
  Show;
  SetForegroundWindow(Handle);

end;




捕捉整个桌面的图片,布布扣,bubuko.com

捕捉整个桌面的图片

原文:http://www.cnblogs.com/xe2011/p/3876061.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!