截取Windows整頁畫面存檔(採用BitBlt方法) |
|
領航天使
站長 發表:12216 回覆:4186 積分:4084 註冊:2001-07-25 發送簡訊給我 |
截取Windows整頁畫面存檔(採用BitBlt方法)
{Designed by http://delphi.ktop.com.tw} procedure TForm1.BitBtn1Click(Sender: TObject); var DC,SourceDC,DestDC: HDC; bitmap:tbitmap; BHandle:thandle; begin SourceDC:=CreateDC('DISPLAY','','',nil); DestDC:=CreateCompatibleDC(SourceDC); BHandle:=CreateCompatibleBitmap(SourceDC,Screen.Width,Screen.Height); SelectObject(DestDC,BHandle); BitBlt(DestDC,0,0,Screen.Width,Screen.Height,SourceDC,0,0,SRCCOPY) ; Bitmap:=TBitmap.Create; Bitmap.Handle:=BHandle; Bitmap.SaveToFile('c:\test.bmp'); DeleteDC(DestDC) ; ReleaseDC(BHandle,SourceDC) ; bitmap.free; end;
------
~~~Delphi K.Top討論區站長~~~ |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |