0

(如果你想重现这个例子,请从这里下载 Paint.NET ,它是免费的,它比 Microsoft Paint 有更多的功能)。

当您打开 Paint.NET 时,加载一个简单的图像并将矩形选择作为工具。

我写了这个简单的脚本:

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

^d::
MouseClickDrag, Left, 365, 434, 906, 460
;You can change mouse coordinates as you wish
Send, ^c
Return

Ctrl用+运行它d

我无法选择这些坐标所描述的区域,而使用矩形颜色填充工具可以正常工作。

如果我使用矩形选择器,AutoHotkey 似乎不会突出显示该区域。

你有同样的问题吗?

4

1 回答 1

1

如果SendMode Input不起作用,Event通常会起作用。不幸的是,它Input没有SetKeyDelay.
但是,如果您正在寻找一种自动处理图像的方法,我建议您使用GDI+

于 2013-08-06T12:33:38.200 回答