菜鸟笔记002 目标对象的中心点与源对象的中心点对齐,获取对象中心坐标

上层对象设置为: 源对象

下层对象设置为: 目标对象

代码如下:(目前不支持蒙版对象)

// 获取当前活动的文档
var doc = app.activeDocument;

// 确保有至少两个选定对象
if (doc.selection.length >= 2) {
    // 获取第一个选定对象(源对象)
    var sourceItem = doc.selection[0];
    // 获取第二个选定对象(目标对象)
    var targetItem = doc.selection[1];

    // 获取源对象的边界矩形(bounding box)
    var sourceBounds = sourceItem.geometricBounds;
    
    // 计算源对象的中心点 X 和 Y 值
    var sourceCenterX = (sourceBounds[0] + sourceBounds[2]) / 2;
    var sourceCenterY = (sourceBounds[1] + sourceBounds[3]) / 2;
    
    // 获取目标对象的边界矩形(bounding box)
    var targetBounds = targetItem.geometricBounds;
    
    // 计算目标对象的宽度和高度
    var targetWidth = targetBounds[2] - targetBounds[0];
    var targetHeight = targetBounds[3] - targetBounds[1];
    
    // 计算目标对象的中心点 X 和 Y 值
    var targetCenterX = (targetBounds[0] + targetBounds[2]) / 2;
    var targetCenterY = (targetBounds[1] + targetBounds[3]) / 2;
    
    // 计算目标对象的新位置(使目标对象的中心点与源对象的中心点对齐)
    var deltaX = sourceCenterX - targetCenterX;
    var deltaY = sourceCenterY - targetCenterY;
    
    // 移动目标对象
    targetItem.left += deltaX;
    targetItem.top += deltaY;

    // 输出新的目标对象位置
    alert("目标对象的位置已调整,中心点 X 和 Y 值已与源对象对齐。");
} else {
    alert("请选定两个对象。");
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值