gpt4 book ai didi

javascript - InDesign CC 2019 | InDesign CC 2019使用 JSX 获取页面尺寸(pageWidth 和 pageHeight),而不是文档尺寸?

转载 作者:行者123 更新时间:2023-12-02 22:57:32 28 4
gpt4 key购买 nike

我有一个 InDesign 文档,其中包含不同宽度尺寸的页面。现在我想用 JS 脚本添加垂直指南。因此我必须添加 pageWidth + pageWidth (特定页面的)。

但我只知道如何获取文档尺寸(pageHeight和pageWidth。但是我有不同的页面,并且尺寸明显不同。

var pageWidth = app.activeDocument.documentPreferences.pageWidth

会给我文档页面宽度

但我需要这样的东西(小说)

var pageWidth = app.activeDocument.pages[0].documentPreferences.pageWidth

感谢您的帮助

最佳答案

main();

function main() {
var doc = app.activeDocument;
var page = doc.pages[0];
var bounds = page.bounds;
var width = RoundWithDecimal(bounds[3] - bounds[1], 3);
var height = RoundWithDecimal(bounds[2] - bounds[0], 3);
}

function RoundWithDecimal(number, decimals){
var multiplier = Math.pow(10,decimals);
return Math.round(number*multiplier)/multiplier;
}

找到答案:

关于javascript - InDesign CC 2019 | InDesign CC 2019使用 JSX 获取页面尺寸(pageWidth 和 pageHeight),而不是文档尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57923373/

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