#include "gdi32.as"
#module
#const SRCCOPY 0x00CC0020
#deffunc captureScreen int x,int y,int w,int h
CreateDCA "DISPLAY",0,0,0
hdcScreen=stat
BitBlt hdc,ginfo(22),ginfo(23),w,h,hdcScreen,x,y,SRCCOPY
DeleteDC hdcScreen
return
#global
captureScreen int x,int y,int w,int h
gselで選択されているウィンドウに指定された矩形の範囲の画面をコピーします。
x,y : コピーする矩形の左上の座標
w,h : コピーする矩形の幅・高さ