Delphi图象截取编程示例(2)

2016-02-19 14:16 7 1 收藏

下面请跟着图老师小编一起来了解下Delphi图象截取编程示例(2),精心挑选的内容希望大家喜欢,不要忘记点个赞哦!

【 tulaoshi.com - 编程语言 】

 

  (四)创建抓取图象的单元文件ScrnCpt

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  unit ScrnCpt;

  interface

  uses windows,forms,controls,classes,Graphics;
  function CaptureScreenRect(ARect:TRect):TBitmap;
  function CaptureScreen:TBitmap;
  function CaptureClientImage(Control:TControl):TBitmap;
  function CaptureControlImage(Control:TControl):TBitmap;
  function CaptureWindowImage(Wnd:HWND):TBitmap;

  implementation

  function CaptureScreenRect(ARect:TRect):TBitmap;
  var ScreenDC:HDC;    //设备描述表的句柄
  
begin
    result:=TBitmap.Create ;
    with Result,ARect do
    begin
      Width :=Right-left;
      Height:=Bottom-Top;
      ScreenDC:=GetDC(0); //获取一个窗口的设备描述表的句柄,0参数返回屏幕窗口设备描述表的句柄
      try
        //BOOL BitBlt(hdcDest,nXDest,nYDest,nWidth,nHeight,hdcSrc,nXSrc,nYSrc,dwRop)
        //把位图从源设备描述表hdcSrc复制到目标设备描述表hdcDest,
        //光栅操作码dwRop指定了 源图的组合方式

        BitBlt(Canvas.Handle ,0,0,Width,Height,ScreenDC,left,top,SRCCOPY);
      finally
        ReleaseDC(0,ScreenDC);
      end;
    end;
  end;

  //全屏抓图
  function CaptureScreen:TBitmap;
  begin
    with Screen do
      result:=CaptureScreenRect(Rect(0,0,width,height));
  end;

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  //抓取一个窗体或控件的客户区图象
  function CaptureClientImage(Control:TControl):TBitmap;
  begin
    //Control.ClientOrigin是控件客户区的左上角位置。x,y是 ClientOrigin的变量
    with Control,Control.ClientOrigin do
      result:=CaptureScreenRect(Bounds(x,y,ClientWidth,ClientHeight));
  end;

  // 抓取一整个窗体或控件
  function CaptureControlImage(Control:TControl):TBitmap;
  begin
    with Control do
      if Parent=nil then //无父窗体,根据它的位置,直接抓取
        result:=CaptureScreenRect(Bounds(left,top,width,height))
      else  //有父窗体,把它转化为相对于屏幕坐标,再 抓取
        with Parent.ClientToScreen(Point(Left,top))do
          result:=CaptureScreenRect(Bounds(x,y,width,height));
  end;

  //根据窗体句柄进行抓取
  function CaptureWindowImage(Wnd:HWND):TBitmap;
  var R:TRect;
  begin
    GetWindowRect(wnd,R); //把窗口句柄指定的窗口坐标放入TRect
    result:=CaptureScreenRect(R);
  end;

  end.

来源:http://www.tulaoshi.com/n/20160219/1606582.html

延伸阅读
标签: Delphi
  拖放 (DragDrop)是 Windows 提供的一种快捷的操作方式。作为基于 Windows 的开发工具, Delphi同样支持拖放操作,而且开发应用系统的拖放功能十分方便,真正体现了 Delphi 的强大功能和方便性。 Delphi提供的所有控件 (Control ,即能获得输入焦点的部件 ) 都支持拖放操作,并有相应的拖放属性、拖放事件和拖放方法。下面我...
◇[DELPHI]网络邻居复制文件 uses shellapi; copyfile(pchar('newfile.txt'),pchar('//computername/direction/targer.txt'),false); ◇[DELPHI]产生鼠标拖动效果 通过MouseMove事件、DragOver事件、EndDrag事件实现,例如在PANEL上的LABEL: var xpanel,ypanel,xlabel,ylabel:integer; PAN...
标签: Delphi
  Delphi作为一门新起的Windows编程语言,由于其集众多的优秀特性于一身,因而越来越得到广大编程人员和发烧友的青睐。以下十则技巧涉及的面比较广泛,希望能够对Delphi的爱好者有所裨益。 1.类似于vb.中的doevents功能。 大家或许发现,在Delphi中没有类似于vb.中的doevents函数,这样有的时候,我们将无法使Windows响应...
MainActivity如下: 代码如下: package cn.testmediametadataretriever; import java.io.File; import java.io.FileOutputStream; import android.media.MediaMetadataRetriever; import android.os.Bundle; import android.os.Environment; import android.app.Activity; import android.graphics.Bitmap; import android.graphics....
Delphi3开始有了TWebBrowser构件,不过那时是以ActiveX控件的形式出现的,而且需要自己引入,在其后的4.0和5.0中,它就在封装好shdocvw.dll之后作为Internet构件组之一出现在构件面板上了。常常听到有人骂Delphi的帮助做得极差,这次的TWebBrowser又是Microsoft的东东,自然不会好到哪里去,虽说MSDN上什么都有,可是内容太过庞杂,如果没有入口...

经验教程

942

收藏

35
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部