1

我希望能够使用点选择工具在图像中放置一个点,然后将 x 和 y 坐标读取到宏中的变量。

我试过 getSelectionCoordinates 但这不起作用。我不想在日志或结果窗口中显示坐标。

任何帮助将非常感激。

4

1 回答 1

4

getSelectionCoordinates对我来说很好,例如:

s = selectionType();

if( s == -1 ) {
    exit("There was no selection.");
} else if( s != 10 ) {
    exit("The selection wasn't a point selection.");
} else {
    getSelectionCoordinates(xPoints,yPoints);
    x = xPoints[0];
    y = yPoints[0];
    showMessage("Got coordinates ("+x+","+y+")");
}

(一个常见的误解是它getSelectionCoordinates通常不会返回一个值——你必须给它它要设置的变量的名称。)

于 2011-02-19T11:19:01.180 回答