文章目录

  • 1.插件界面
  • 2.关键代码
    • 2.1.1寸裁剪
    • 2.2.1寸排版

  PS是一款栅格图像编辑软件,具有许多强大的功能,可以制作证件照,本文演示如何通过脚本实现1寸裁剪和1寸排版功能相关功能,展示从互联网收集而来的一个小插件,供大家学习交流,请勿用于商业用途。

1.插件界面

  本文界面是一系列功能的一部分,将逐步展示,但是功能界面是共同的,如下图所示:

2.关键代码

2.1.1寸裁剪

  原理是调用预设1寸裁剪功能,如果读者没有相关文件,可以向作者留言,或在指定链接下载,https://download.csdn.net/download/weixin_42247427/78388222,大家可通过源代码阅读,来掌握相关技巧,源代码如下:

function act_CAIJIAN() {var idslct = charIDToTypeID("slct");var desc1201 = new ActionDescriptor();var idnull = charIDToTypeID("null");var ref409 = new ActionReference();var idcropTool = stringIDToTypeID("cropTool");ref409.putClass(idcropTool);desc1201.putReference(idnull, ref409);var iddontRecord = stringIDToTypeID("dontRecord");desc1201.putBoolean(iddontRecord, true);var idforceNotify = stringIDToTypeID("forceNotify");desc1201.putBoolean(idforceNotify, true);executeAction(idslct, desc1201, DialogModes.NO);var idslct = charIDToTypeID("slct");var desc1202 = new ActionDescriptor();var idnull = charIDToTypeID("null");var ref410 = new ActionReference();var idtoolPreset = stringIDToTypeID("toolPreset");ref410.putName(idtoolPreset, "-常用1寸-");desc1202.putReference(idnull, ref410);executeAction(idslct, desc1202, DialogModes.NO);
}

2.2.1寸排版

  大家可通过源代码阅读,来掌握相关技巧,源代码如下:

function yi_cun_pai_ban() {function step1(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();desc1.putUnitDouble(cTID("Wdth"), cTID("#Rlt"), 76.5);desc1.putUnitDouble(cTID("Hght"), cTID("#Rlt"), 102.15);desc1.putUnitDouble(cTID("Rslt"), cTID("#Rsl"), 320);desc1.putEnumerated(cTID("Intr"), cTID("Intp"), cTID("Bcbc"));executeAction(sTID("imageSize"), desc1, dialogMode);}function step2(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();desc1.putUnitDouble(cTID("Wdth"), cTID("#Rlt"), 90.7086614173228);desc1.putUnitDouble(cTID("Hght"), cTID("#Rlt"), 141.732283464567);desc1.putEnumerated(cTID("Hrzn"), cTID("HrzL"), cTID("Cntr"));desc1.putEnumerated(cTID("Vrtc"), cTID("VrtL"), cTID("Cntr"));desc1.putEnumerated(sTID("canvasExtensionColorType"), sTID("canvasExtensionColorType"), cTID("BckC"));executeAction(sTID("canvasSize"), desc1, dialogMode);}function step3(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();desc1.putUnitDouble(cTID("Wdth"), cTID("#Rlt"), 360);desc1.putUnitDouble(cTID("Hght"), cTID("#Rlt"), 252.283464566929);desc1.putEnumerated(cTID("Hrzn"), cTID("HrzL"), cTID("Left"));desc1.putEnumerated(cTID("Vrtc"), cTID("VrtL"), cTID("Top "));desc1.putEnumerated(sTID("canvasExtensionColorType"), sTID("canvasExtensionColorType"), cTID("BckC"));executeAction(sTID("canvasSize"), desc1, dialogMode);}function step4(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putProperty(cTID("Chnl"), sTID("selection"));desc1.putReference(cTID("null"), ref1);var desc2 = new ActionDescriptor();desc2.putUnitDouble(cTID("Top "), cTID("#Rlt"), 10.8);desc2.putUnitDouble(cTID("Left"), cTID("#Rlt"), 0);desc2.putUnitDouble(cTID("Btom"), cTID("#Rlt"), 135);desc2.putUnitDouble(cTID("Rght"), cTID("#Rlt"), 90.675);desc1.putObject(cTID("T   "), cTID("Rctn"), desc2);executeAction(sTID("set"), desc1, dialogMode);}function step5(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));desc1.putReference(cTID("null"), ref1);desc1.putEnumerated(cTID("FTcs"), cTID("QCSt"), sTID("QCSAverage"));var desc2 = new ActionDescriptor();desc2.putUnitDouble(cTID("Hrzn"), cTID("#Rlt"), 88.3499615212504);desc2.putUnitDouble(cTID("Vrtc"), cTID("#Rlt"), 0);desc1.putObject(cTID("Ofst"), cTID("Ofst"), desc2);desc1.putBoolean(cTID("Cpy "), true);executeAction(sTID("transform"), desc1, dialogMode);}function step6(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));desc1.putReference(cTID("null"), ref1);desc1.putBoolean(cTID("LstT"), true);desc1.putBoolean(cTID("Cpy "), true);executeAction(sTID("transform"), desc1, dialogMode);}function step7(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));desc1.putReference(cTID("null"), ref1);desc1.putBoolean(cTID("LstT"), true);desc1.putBoolean(cTID("Cpy "), true);executeAction(sTID("transform"), desc1, dialogMode);}function step8(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putProperty(cTID("Chnl"), sTID("selection"));desc1.putReference(cTID("null"), ref1);desc1.putEnumerated(cTID("T   "), cTID("Ordn"), cTID("None"));executeAction(sTID("set"), desc1, dialogMode);}function step9(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putProperty(cTID("Chnl"), sTID("selection"));desc1.putReference(cTID("null"), ref1);var desc2 = new ActionDescriptor();desc2.putUnitDouble(cTID("Top "), cTID("#Rlt"), 9);desc2.putUnitDouble(cTID("Left"), cTID("#Rlt"), 0);desc2.putUnitDouble(cTID("Btom"), cTID("#Rlt"), 134.55);desc2.putUnitDouble(cTID("Rght"), cTID("#Rlt"), 359.55);desc1.putObject(cTID("T   "), cTID("Rctn"), desc2);executeAction(sTID("set"), desc1, dialogMode);}function step10(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));desc1.putReference(cTID("null"), ref1);desc1.putEnumerated(cTID("FTcs"), cTID("QCSt"), sTID("QCSAverage"));var desc2 = new ActionDescriptor();desc2.putUnitDouble(cTID("Hrzn"), cTID("#Rlt"), 0);desc2.putUnitDouble(cTID("Vrtc"), cTID("#Rlt"), 113.999950350001);desc1.putObject(cTID("Ofst"), cTID("Ofst"), desc2);desc1.putBoolean(cTID("Cpy "), true);executeAction(sTID("transform"), desc1, dialogMode);}function step11(enabled, withDialog) {if (enabled != undefined && !enabled) {return;}var dialogMode = withDialog ? DialogModes.ALL : DialogModes.NO;var desc1 = new ActionDescriptor();var ref1 = new ActionReference();ref1.putProperty(cTID("Chnl"), sTID("selection"));desc1.putReference(cTID("null"), ref1);desc1.putEnumerated(cTID("T   "), cTID("Ordn"), cTID("None"));executeAction(sTID("set"), desc1, dialogMode);}step1();step2();step3();step4();step5();step6();step7();step8();step9();step10();step11();
}

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

文章引用至 作者知了-联系方式1

文章引用至 作者知了-联系方式2

Photoshop插件--证件照--1寸裁剪--1寸排版--脚本开发--PS插件相关推荐

  1. Photoshop插件--新建文档--嵌入智能对象--复制图像--脚本开发--PS插件

    文章目录 1.插件界面 2.关键代码 2.1新建文档 2.2嵌入智能对象 2.3复制图像 3.作者寄语   PS是一款栅格图像编辑软件,具有许多强大的功能,本文演示如何通过脚本新建文档,嵌入智能对象和 ...

  2. Photoshop插件-秋色效果-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码-秋色效果 3.作者答疑   PS是一款栅格图像编辑软件,具有许多强大的功能,本文演示如何通过脚本实现秋色效果相关功能,展示从互联网收集而来的一个小插件,供大家学习 ...

  3. Photoshop插件-保存-8位通道-16位通道-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码 2.1.8位通道 2.2.16位通道 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,具有许多强大的功能,本文演示如何通过脚本实现8位通道和16位通 ...

  4. Photoshop插件-锐化-多重调整锐化 (Web)-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,模块众多.提供了脚本,动态连接库等多种扩展机制,本文演示如何通过脚本实现多重调整锐化 (Web)相关 ...

  5. Photoshop插件-色彩混合模式-盖印-删除-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码 2.1 色彩混合模式 2.2 盖印 2.3 删除 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,模块众多.提供了脚本,动态连接库等多种扩展机制,本 ...

  6. Photoshop插件-锐化-高反差保留-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,模块众多.提供了脚本,动态连接库等多种扩展机制,本文演示如何通过脚本实现高反差保留相关功能,展示从互 ...

  7. Photoshop插件-锐化-高反差保留仅边缘-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,模块众多.提供了脚本,动态连接库等多种扩展机制,本文演示如何通过脚本实现高反差保留仅边缘相关功能,展 ...

  8. Photoshop插件-修复高光-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码-修复高光 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,模块众多.提供了脚本,动态连接库等多种扩展机制,本文演示如何通过脚本实现修复高光相关功能, ...

  9. Photoshop插件-晕影白色-脚本开发-PS插件

    文章目录 1.插件界面 2.关键代码 3.代码转执行 4.作者答疑   PS是一款栅格图像编辑软件,具有许多强大的功能,本文演示如何通过脚本实现晕影白色相关功能,展示从互联网收集而来的一个小插件,供大 ...

最新文章

  1. JSP实现网上招标系统
  2. 绿色数据中心将惠及众生
  3. [转].NET 数字格式化:忽略末尾零
  4. php网站开发期末大作业,大学生期末网页大作业
  5. [剑指offer]面试题第[53-2]题[JAVA][0-n-1中缺失的数字][二分法][暴力法]
  6. mysql常用命令英文词汇_MySQL中文全文索引插件 mysqlcft 1.0.0 安装使用文档
  7. 力扣530. 二叉搜索树的最小绝对差(JavaScript)
  8. 解决zabbix-4系列监控图形中文乱码问题
  9. 有人说清华本科含金量最高,研究生的含金量就低了,这是为什么?
  10. zabbix安装与配置
  11. 论文笔记:语音情感识别(三)手工特征+CRNN
  12. Java(31)_JDBC连接mysql数据库(一)
  13. 操作系统实验报告 实验3存储管理实验(答案全)
  14. html5妇女节游戏,2018三八妇女节趣味游戏大全
  15. SpringCound-Alibaba
  16. 网卡高可用与负载均衡【team】
  17. Ugly Windows UVA - 1419
  18. ch341a i2c 安卓_CH341-I2C-labview-all-vision CH341A的I2C接口Labview all vision - 下载 - 搜珍网...
  19. 小米5 android 7.0 rom,小米5升级安卓7.0 小米5刷安卓7.0教程
  20. JAVA --数字与字符串(四)格式化输出

热门文章

  1. ant design vue 组件 Tree
  2. 引导滤波guideFilter原理推导与实验
  3. 【PTA】读入一个正整数 n,计算其各位数字之和,用汉语拼音写出和的每一位数字。c。
  4. 用数据分析验证,王者荣耀完胜阴阳师,小学生才是最终的赢家
  5. js赋值改变后,原数据也发生改变
  6. 静态动态博客添加足迹
  7. 电化学线性极化曲线的Tafel外推法(Tafel拟合)得到年腐蚀速率和极化电阻的原理(科研投稿)
  8. 银河麒麟识别不了U盘
  9. Html img显示图片的三种方式
  10. Apollo星火计划学习笔记|控制模块