如何使用 JavaScript 在 Adob​​e Illustrator 中设置笔触对齐

Posted

技术标签:

【中文标题】如何使用 JavaScript 在 Adob​​e Illustrator 中设置笔触对齐【英文标题】:How to set stroke align in Adobe Illustrator with JavaScript 【发布时间】:2020-06-28 20:56:55 【问题描述】:

Adobe Illustrator 提供 javascript 库来构建批处理脚本。

var doc = activeDocument;
var rect = doc.pathItems.rectangle(700, 80, 400, 70);
rect.stroked = true;    // open stroke
rect.strokeWidth = 3;
var newRGBColor = new RGBColor();
newRGBColor.red = 200;
newRGBColor.green = 120;
newRGBColor.blue = 240;
rect.strokeColor = newRGBColor;
// and we also can set StrokeJoin and StrokeCap

但我找不到如何设置笔画对齐...

【问题讨论】:

考虑为您的问题添加更多细节。 【参考方案1】:

迟到了,但你走了:

rect.strokeCap = StrokeCap.BUTTENDCAP;//ROUNDENDCAP, PROJECTINGENDCAP
rect.strokeJoin = StrokeJoin.ROUNDENDJOIN;//BEVELENDJOIN, MITERENDJOIN

【讨论】:

以上是关于如何使用 JavaScript 在 Adob​​e Illustrator 中设置笔触对齐的主要内容,如果未能解决你的问题,请参考以下文章

在 HTML5 画布模式下使用带有外部 JavaScript 文件的 Adob​​e Animate CC

Javascript / Adob e DTM:跟踪复选框仅点击一次

我可以在用于桌面 AIR 应用程序的 Adob​​e Flex 项目中使用诸如 turn.js 之类的 javascript 库吗?

javascript 数字钱包:DMP Adob​​e目标集成代码

在 Adob​​e AxAcroPDFLib 中启用注释

如何在 Adob​​e Animate 中悬停时反向播放动画?