我的图像是2048 * 2048。当我运行以下宏时:
makeRectangle(304, 304, 1450, 1450);
run("Crop");
然后它会产生1450 * 1450的图像。为什么不(1450-303)*(1450-303)?
答案 0 :(得分:1)
因为makeRectangle
需要左上角的x和y坐标,以及宽度和高度(不是右下角的坐标)角色)矩形选择。
该行
makeRectangle(304, 304, 1450, 1450);
相当于
run("Specify...", "width=1450 height=1450 x=304 y=304");