码迷,mamicode.com
首页 > 其他好文 > 详细

捕捉整个桌面的图片

时间:2014-07-29 21:03:22      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:des   http   color   for   div   ar   window   file   

捕捉整个桌面的图片 但不捕捉自己这个窗体
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

捕捉整个桌面的图片

标签:des   http   color   for   div   ar   window   file   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!