|
2015/5/4(Mon) 01:52:10|NO.68964
>>スペースさん
ありがとうございます、今見ている所です!
>>kanahironさん
ありがとうございます、保存形式は上記で上げているソフト全部、.pngです。
以下のコードで保存しています。
URL見てみます。
#uselib "gdi32.dll"
#cfunc CreateDC "CreateDCA" sptr,sptr,sptr,int
#func DeleteDC "DeleteDC" int
#func BitBlt "BitBlt" int,int,int,int,int,int,int,int,int
#define NULL 0
#define SRCCOPY 0x00CC0020
#define CAPTUREBLT 0x40000000
SX = ginfo_dispx : SY = ginfo_dispy
buffer 1,SX,SY
hdcScreen = CreateDC("DISPLAY", NULL,NULL,NULL)
BitBlt hdc,0,0,SX,SY,hdcScreen,0,0,SRCCOPY | CAPTUREBLT
DeleteDC hdcScreen
bmpsave "test.png"
|