D3D的后台截图复制不到TBITMAP
//GetFrontBufferData就正常,GetBackBuffer显示是0
function PresentCallback(const Self: IDirect3DDevice9;
const SourceRect, DestRect: PRect; const DestWindowOverride: HWND;
DirtyRegion: PRgnData): HResult; stdcall;
var
MenuFont: D3DX9.ID3DXFont;
rec: PRect;
pSurface: IDirect3DSurface9;
ARect: TRect;
LockedRect: TD3DLockedRect;
BitsPerPixel: Byte;
BMP:TBitmap;
i,p: Integer;
x:integer;
begin
self.CreateOffscreenPlainSurface(Screen.Width, Screen.Height, D3DFMT_A8R8G8B8, D3DPOOL_SYSTEMMEM, pSurface, nil);
// D3DPOOL_SCRATCH
//self.GetFrontBufferData(0, pSurface);
self.GetBackBuffer(0, 0, 0, pSurface);
//这里可以直接正常保存
//D3DXSaveSurfaceToFile('Desktop.bmp', D3DXIFF_BMP, pSurface, nil, nil);
ARect := Screen.DesktopRect;
pSurface.LockRect(LockedRect, @ARect, D3DLOCK_NO_DIRTY_UPDATE or D3DLOCK_NOSYSLOCK or D3DLOCK_READONLY);
// use Bitmap to save surface
BMP := TBitmap.Create;
BitsPerPixel := GetDeviceCaps(GetWindowDC(GetDesktopWindow()), BITSPIXEL);
BMP.Width := Screen.Width;
BMP.Height := Screen.Height;
case BitsPerPixel of
8: BMP.PixelFormat := pf8bit;
16: BMP.PixelFormat := pf16bit;
24: BMP.PixelFormat := pf24bit;
32: BMP.PixelFormat := pf32bit;
end;
p := Cardinal(LockedRect.Bits);
//GetFrontBufferData就正常,GetBackBuffer显示是0
outputdebugstring(pchar('--'+inttostr(p)));
for i := 0 to Screen.Height - 1 do
begin
CopyMemory(BMP.ScanLine, Ptr(p), Screen.Width * BitsPerPixel div 8);
p := p + LockedRect.Pitch;
end;
bmp.SaveToFile('a.bmp');
bmp.Free;
pSurface.UnlockRect;
Result := PresentNext(self, SourceRect, DestRect, DestWindowOverride, DirtyRegion);
end; 高手云集 马上来看看
貌似很不错的样子 执勤看帖,慢慢飘过得到一个海币. 然后用掉这个海币 回复一下 证明我来过 {:cry:}看不懂 感谢楼主,支持楼主-支持 海。
页:
[1]