- 首先,您必须获得正确的窗口。正如尖牙已经指出的那样,您应该使用
GetForegroundWindow
而不是GetDesktopWindow
. 你已经在你的改进版本中做到了。
- 但是您必须将位图的大小调整为 DC/Window 的实际大小。你还没有这样做。
- 然后确保你没有捕获一些全屏窗口!
当我执行你的代码时,我的 Delphi IDE 被捕获,并且默认情况下它是全屏的,它产生了全屏截图的错觉。(即使您的代码大部分是正确的)
考虑到上述步骤,我成功地使用您的代码创建了单窗口屏幕截图。
只是一个提示:如果你只对客户区感兴趣,你可以GetDC
代替。GetWindowDC
(无窗口边框)
编辑:这是我用你的代码所做的:
你不应该使用这个代码!看看下面的改进版本。
procedure TForm1.Button1Click(Sender: TObject);
const
FullWindow = True; // Set to false if you only want the client area.
var
hWin: HWND;
dc: HDC;
bmp: TBitmap;
FileName: string;
r: TRect;
w: Integer;
h: Integer;
begin
form1.Hide;
sleep(500);
hWin := GetForegroundWindow;
if FullWindow then
begin
GetWindowRect(hWin,r);
dc := GetWindowDC(hWin) ;
end else
begin
Windows.GetClientRect(hWin, r);
dc := GetDC(hWin) ;
end;
w := r.Right - r.Left;
h := r.Bottom - r.Top;
bmp := TBitmap.Create;
bmp.Height := h;
bmp.Width := w;
BitBlt(bmp.Canvas.Handle, 0, 0, w, h, DC, 0, 0, SRCCOPY);
form1.Show ;
FileName := 'Screenshot_'+FormatDateTime('mm-dd-yyyy-hhnnss',now());
bmp.SaveToFile(Format('C:\Screenshots\%s.bmp', [FileName]));
ReleaseDC(hwin, DC);
bmp.Free;
end;
编辑 2:根据要求,我正在添加更好的代码版本,但我保留旧版本作为参考。您应该认真考虑使用它而不是您的原始代码。如果出现错误,它会表现得更好。(资源已清理,您的表单将再次可见,...)
procedure TForm1.Button1Click(Sender: TObject);
const
FullWindow = True; // Set to false if you only want the client area.
var
Win: HWND;
DC: HDC;
Bmp: TBitmap;
FileName: string;
WinRect: TRect;
Width: Integer;
Height: Integer;
begin
Form1.Hide;
try
Application.ProcessMessages; // Was Sleep(500);
Win := GetForegroundWindow;
if FullWindow then
begin
GetWindowRect(Win, WinRect);
DC := GetWindowDC(Win);
end else
begin
Windows.GetClientRect(Win, WinRect);
DC := GetDC(Win);
end;
try
Width := WinRect.Right - WinRect.Left;
Height := WinRect.Bottom - WinRect.Top;
Bmp := TBitmap.Create;
try
Bmp.Height := Height;
Bmp.Width := Width;
BitBlt(Bmp.Canvas.Handle, 0, 0, Width, Height, DC, 0, 0, SRCCOPY);
FileName := 'Screenshot_' +
FormatDateTime('mm-dd-yyyy-hhnnss', Now());
Bmp.SaveToFile(Format('C:\Screenshots\%s.bmp', [FileName]));
finally
Bmp.Free;
end;
finally
ReleaseDC(Win, DC);
end;
finally
Form1.Show;
end;
end;