其他分享
首页 > 其他分享> > illustrator插件--常用功能开发--标注纵尺寸--js脚本开发--AI插件

illustrator插件--常用功能开发--标注纵尺寸--js脚本开发--AI插件

作者:互联网

  illustrator是矢量编辑软件,画板是绘制处理的重要容器,在印刷方面的一个重要功能就是标注纵尺寸,开发一个标注纵尺寸功能,以下功能仅用于学习交流,请勿用于非法用途和商业用途,源代码如下所示:


doc = app.activeDocument;
theSelect = doc.selection;
for (var i = 0; i < theSelect.length; i += 1) {
    x = theSelect[i].left;
    y = theSelect[i].top;
    w = theSelect[i].width;
    h = theSelect[i].height;
    s = 30;
    asize = 20;
    if (h < 50 || w < 50) {
        asize = 5;
    }
    tsize = 36;
    if (h < 60 || w < 60) {
        tsize = 12;
    }
    redColor = new CMYKColor();
    redColor.black = 1;
    redColor.cyan = 1;
    redColor.magenta = 100;
    redColor.yellow = 100;
    var g1 = doc.groupItems.add();
    var line1 = g1.pathItems.add();
    line1.setEntirePath(new Array(new Array(x - s, y), new Array(x - s, y - h)));
    line1.strokeColor = redColor;
    var line1 = g1.pathItems.add();
    line1.setEntirePath(new Array(new Array((x - s) - (s / 2), y), new Array(x - (s / 2), y)));
    line1.strokeColor = redColor;
    var line1 = g1.pathItems.add();
    line1.setEntirePath(new Array(new Array((x - s) - (s / 2), y - h), new Array(x - (s / 2), y - h)));
    line1.strokeColor = redColor;
    var ar1 = g1.pathItems.add();
    ar1.setEntirePath(new Array(new Array(x - s, y), new Array((x - s) - (asize / 2), y - asize), new Array((x - s) + (asize / 2), y - asize)));
    ar1.strokeColor = NoColor;
    ar1.fillColor = redColor;
    ar1.closed = true;
    var ar1 = g1.pathItems.add();
    ar1.setEntirePath(new Array(new Array(x - s, y - h), new Array((x - s) - (asize / 2), (y - h) + asize), new Array((x - s) + (asize / 2), (y - h) + asize)));
    ar1.strokeColor = NoColor;
    ar1.fillColor = redColor;
    ar1.closed = true;
    var t1 = g1.textFrames.add();
    t1.contents = (Math.round(h * 0.35277778 * 1000) / 1000) + " mm";
    t1.textRange.characterAttributes.size = tsize;
    t1.textRange.characterAttributes.fillColor = redColor;
    t1.left = ((x - s) - s) - (t1.width / 2);
    t1.top = (y - (h / 2)) + (t1.height / 2);
    t1.rotate(90);
}

  合理的脚本代码可以有效的提高工作效率,减少重复劳动。


  欢迎光临知了软件开发网络平台,本公司定制开发各类软件,主要方向为桌面专业软件开发和插件定制开发,桌面软件主要包括文字图形识别类软件,信息管理类软件,3D打印类软件,视频类软件以及其它涉及专业的各类图形图像处理软件。插件包含AE插件,AI插件,PS插件,PDF插件,3DMAX插件以及Word,Excel等Office插件开发。详情请咨询,微信QQ:312117271,手机:18928899728。公司网址:http://www.zhiliaos.com

标签:ar1,插件,illustrator,--,redColor,asize,new,Array
来源: https://blog.csdn.net/zhixingshi/article/details/123019862