오토핫키
[오토핫키] 텔레그램 특정 창 이미지 송신
징쟝
2020. 11. 17. 16:42
위 두개의 파일을 lib 폴더에 넣어준다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #Include %A_scriptDir%\lib\Telegram_Image_Send.ahk #Include %A_scriptDir%\lib\Gdip_All.ahk Global Telegram_chatid := "XXXXXXX" ; replace XXXXXXX with your chat_id Global Telegram_Token := "XXXXXXX" ; replace XXXXXXX with your Token 이미지캡쳐("카카오톡") ;Sleep, 500 ExitApp 이미지캡쳐(Title) { pToken := Gdip_Startup() pBitmap := Gdip_BitmapFromHwnd(WinExist(Title)) Gdip_SaveBitmapToFile(pBitmap, "result.png") Gdip_DisposeImage(pBitmap) Gdip_Shutdown(pToken) SendPhoto(Telegram_Token, Telegram_chatid, A_ScriptDir . "\result.png") ; send the image; use msgbox for checking the json response FileDelete, result.png } | cs |