博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
提交任务photoshop的脚本端
阅读量:5858 次
发布时间:2019-06-19

本文共 1254 字,大约阅读时间需要 4 分钟。

//访问Photoshop,并把应用程序放置顶层

#target photoshop
app.bringToFront();
//设置场景像素
app.preferences.rulerUnits = Units.PIXELS;
app.preferences.typeUnits = TypeUnits.PIXELS;

if (app.documents.length != 0)

{
    //放缩图大小 不知道为什么不起作用  BUG?
    app.activeDocument.resizeImage =( 20 , 20  ,72 , ResampleMethod.BICUBICSHARPER) ;

    //获取当前时间,PS获取的月是从0开始的

    var nowTime=new Date();

    //存放缩略图的地址

    jpgFile = new File("c:\\" + app.activeDocument.name)
    //JPG压缩参数
    var jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = 1;
    //另存为
    app.activeDocument.saveAs(jpgFile,jpgSaveOptions,true,Extension.LOWERCASE);

    //写入任务操作

    var strFile =new File( "c:\\test.txt");
    if (strFile.exists)
    {
        strFile.open ("a");
        strFile.writeln(app.activeDocument.name);
        strFile.writeln((nowTime.getMonth() +1).toString() + "月" + nowTime.getDate().toString() + "日");
       strFile.close();
      // alert("任务:"+ app.activeDocument.name + " 提交完成,"+"是否启动AB提交任务?");
       var bool = confirm("任务:"+ app.activeDocument.name + " 提交完成,"+"是否启动AB提交任务?");
       if(bool == true)
       {
           //启动外部程序的方法
            var ww =new File( "C:\\Program Files\\Autodesk\\3ds Max 2011\\3dsmax.exe");
            ww.execute();
        }
       else
       {
           alert("再见");
        }
    }
}

 

 

转载地址:http://kzljx.baihongyu.com/

你可能感兴趣的文章
CentOS6.5 Nginx搭建web服务器,实现平滑升级,虚拟主机及访问控制
查看>>
Logrotate使用
查看>>
“软”负载均衡学习点滴(三)
查看>>
spring利用javamail,quartz定时发送邮件
查看>>
[体感游戏]关于体感游戏的一些思考(七) --- “我是泰山,你是简?”
查看>>
2.K8S部署-------- 制作CA证书
查看>>
10步让你成为更优秀的程序员
查看>>
Getting Your Feet Wet with the SWT StyledText W...
查看>>
linux coredump配置及其调试出core文件
查看>>
EOF在linux和window系统中
查看>>
我的友情链接
查看>>
log4j日志输出配置
查看>>
Java代码格式规范个人推荐(带范例)
查看>>
说一说那些我也不太懂的 Raft 协议
查看>>
IPTV技术介绍
查看>>
19、OSPF配置实验之注入默认路由
查看>>
使用Windows Live Writer 发布51CTO博客
查看>>
我的友情链接
查看>>
dreamweaver CS5安装
查看>>
Java Timer的使用(timer.schedule定时执行)(转)
查看>>