apopen 发表于 2015-10-17 15:50:13

(已解决)_screencapture_capture截图函数请教

本帖最后由 apopen 于 2015-10-18 11:33 编辑

我做了一个截图小程序,要实现可以实现可定制的四个坐标截图,用动态数值就没办法截图,这是什么问题呢?
比如,用一下代码可以截屏:
_ScreenCapture_Capture(@ScriptDir & "\"& $Day_Stamp & $Time_Stamp &"_"& $n & ".png", 172, 88, 1040, 777)
而用以下代码就没办法输出了:
Global $Input2 = GUICtrlCreateInput("172", 64, 48, 50, 22)
Global $Input3 = GUICtrlCreateInput("88", 120, 48, 50, 21)
Global $Input4 = GUICtrlCreateInput("1150", 240, 48, 50, 21)
Global $Input5 = GUICtrlCreateInput("800", 296, 48, 50, 22)
_ScreenCapture_Capture(@ScriptDir & "\"& $Day_Stamp & $Time_Stamp &"_"& $n & ".jpg", GUICtrlRead($Input2), GUICtrlRead($Input3), GUICtrlRead($Input4), GUICtrlRead($Input5) )
求解决,谢谢!

Alam 发表于 2015-10-17 19:56:30

Number(GUICtrlRead($Input2))

apopen 发表于 2015-10-18 11:33:15

回复 2# Alam
谢谢已经完美解决
页: [1]
查看完整版本: (已解决)_screencapture_capture截图函数请教