Delphi Active Window截图

时间:2014-05-01 15:02:52

标签: delphi screenshot active-window

我正在尝试使用此代码添加活动窗口的捕获屏幕截图

procedure ScreenShot(activeWindow: bool; destBitmap : TBitmap) ;
 var
    w,h : integer;
    DC : HDC;
    hWin : Cardinal;
    r : TRect;
 begin
    if activeWindow then
    begin
      hWin :=  GetForegroundWindow;
      dc := GetWindowDC(hWin) ;
      GetWindowRect(hWin,r) ;
      w := r.Right - r.Left;
      h := r.Bottom - r.Top;
    end
    else
    begin
      hWin := GetForegroundWindow;
      dc := GetDC(hWin) ;
      w := GetDeviceCaps (DC, HORZRES) ;
      h := GetDeviceCaps (DC, VERTRES) ;
    end;

    try
     destBitmap.Width := w;
     destBitmap.Height := h;
     BitBlt(destBitmap.Canvas.Handle,
            0,
            0,
            destBitmap.Width,
            destBitmap.Height,
            DC,
            0,
            0,
            SRCCOPY) ;
    finally
     ReleaseDC(hWin, DC) ;
    end;
 end;

在Button1中我使用:

var
  path:string;
  b:TBitmap;
begin
   path:= ExtractFilePath(Application.ExeName) + '/Screenshot/';
   b := TBitmap.Create;
   try
     ScreenShot(TRUE, b) ;
     b.SaveToFile(path + 'Screenshot_1.png');
   finally
     b.FreeImage;
     FreeAndNil(b) ;
   end;
end;

它运作良好唯一的问题是它不捕获标题栏:(

这是完整活动窗口视图:

enter image description here

以下是我从该代码中获得的内容

enter image description here

我在哪里做错了?

2 个答案:

答案 0 :(得分:3)

我不知道你正在使用什么样的视觉样式组件(表单图标表示它是Delphi 7)。

这段代码非常适合我:

function CaptureWindow(const WindowHandle: HWnd): TBitmap;
var
  DC: HDC;
  wRect: TRect;
  Width, Height: Integer;
begin
  DC := GetWindowDC(WindowHandle);
  Result := TBitmap.Create;
  try
    GetWindowRect(WindowHandle, wRect);
    Width := wRect.Right - wRect.Left;
    Height := wRect.Bottom - wRect.Top;
    Result.Width := Width;
    Result.Height := Height;
    Result.Modified := True;
    BitBlt(Result.Canvas.Handle, 0, 0, Width, Height, DC, 0, 0, SRCCOPY);
  finally
    ReleaseDC(WindowHandle, DC);
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  Capture: TBitmap;
begin
  //  For active window, change Handle to GetForegroundWindow()
  Capture := CaptureWindow(Handle);  
  try
    Capture.SaveToFile('E:\TempFiles\ScreenCapture2014.bmp');
  finally
    Capture.Free;
  end;
end;

这是我拍摄的图像:

Sample form window capture

答案 1 :(得分:2)

我已经测试并得到了相同的结果。

enter image description here

原创带边框

enter image description here

但如果你设置

sSkinProvider1.AllowExtBorders:=False;

您获得的屏幕截图没有透明的roundet边框。

enter image description here

然后退回

sSkinProvider1.AllowExtBorders:=True;

在第二次

之后无需做
Form1.Repaint;

您只会看到一个短暂的开关。

procedure TForm1.BitBtn1Click(Sender: TObject);
var
  path:string;
  b:TBitmap;
begin
   sSkinProvider1.AllowExtBorders:=False;
   Form1.Repaint;
   path:= ExtractFilePath(Application.ExeName) + 'Screenshot\';
   b := TBitmap.Create;
   try
     ScreenShot(TRUE, b) ;
     b.SaveToFile(path + 'Screenshot_1.png');
   finally
     b.FreeImage;
     FreeAndNil(b) ;
     sSkinProvider1.AllowExtBorders:=True;
[...]

顺便说一句。不要像

那样设置路径
path:= ExtractFilePath(Application.ExeName) + '/Screenshot/';

使用Windows样式反斜杠,只使用一个

path:= ExtractFilePath(Application.ExeName) + 'Screenshot\'; 

使用Delphi5进行测试