konhon

忘掉過去,展望未來。找回自我,超越自我。
逃避不一定躲的过, 面对不一定最难过, 孤单不一定不快乐, 得到不一定能长久, 失去不一定不再拥有, 可能因为某个理由而伤心难过, 但我却能找个理由让自己快乐.

Google

BlogJava 首页 新随笔 联系 聚合 管理
  203 Posts :: 0 Stories :: 61 Comments :: 0 Trackbacks
抓 图 实 际 上 是 位 图 的 复 制 , Windows在 复 制 位 图 时 是 不 会 受 鼠 标
光 标 的 影 响 的 。 可 以 先 抓 图 , 然 后 在 使 用 DrawIcon将 鼠 标 光 标 画 上 去 。


procedure TForm1.FormClick(Sender: TObject);
var
  winHWND, hCur: integer;
  winDC: integer;
  rect: TRect;
  pt: TPoint;
  fBitmap: TBitmap;
begin
  hCur := GetCursor(); // 取得光标句柄
  GetCursorPos(pt); // 取得光标位置
  winHWND := GetDesktopWindow();
  winDC := GetDC(winHWND);
  GetWindowRect(winHWND, rect);
  fBitmap := TBitmap.create;
  try
    fBitmap.width := rect.right - rect.left;
    fBitmap.height := rect.bottom - rect.top;
    BitBlt(fBitmap.canvas.handle, 0, 0, fBitmap.width, fBitmap.height, winDC, 0, 0, SRCCOPY);
    DrawIcon(fBitmap.canvas.handle, pt.x, pt.y, hCur); // 画光标
    ReleaseDC(winHWND, winDC);
    Image1.Picture.Bitmap.Assign(fBitmap);
  finally
    fBitmap.Free;
  end;
end;
posted on 2005-11-11 19:59 konhon 优华 阅读(367) 评论(0)  编辑  收藏 所属分类: Delphi

只有注册用户登录后才能发表评论。


网站导航: