gpt4 book ai didi

javascript - Photoshop 脚本 : Move an image to position x, y

转载 作者:数据小太阳 更新时间:2023-10-29 04:01:37 25 4
gpt4 key购买 nike

我有一个事件的 ArtLayer 被变量 NewLayer 引用,我想移动到 Canvas 中的绝对位置 x,y。

我已经用谷歌搜索了几个小时,但没有任何结果。有人可以举个例子吗?

//谢谢。

最佳答案

经过更多 API 阅读和搜索后,我得出的结论是只能使用增量移动来移动图层。

我编写了这个小函数来将图层定位在绝对位置。希望这对下一个有同样问题的读者有所帮助...

//******************************************
// MOVE LAYER TO
// Author: Max Kielland
//
// Moves layer fLayer to the absolute
// position fX,fY. The unit of fX and fY are
// the same as the ruler setting.

function MoveLayerTo(fLayer,fX,fY) {

var Position = fLayer.bounds;
Position[0] = fX - Position[0];
Position[1] = fY - Position[1];

fLayer.translate(-Position[0],-Position[1]);
}

关于javascript - Photoshop 脚本 : Move an image to position x, y,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12064015/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com