liangqr2020 发表于 2020-8-4 14:14:14

PDF分拆(AI脚本)



/* Split all pages */

// regular expression acquire the base name of file
var re = /.*\/|\.pdf$/ig;
var rePath = /.*\//ig;

var strFilename = this.path.replace(re,"");
var strPath = this.path.match(rePath);

var nResponse = app.alert({cMsg:"Each page in the file " + strFilename + " will be saved as a separate file in the location " + strPath + ". Do you wish to proceed?", nIcon: 2, nType: 2});

if(nResponse==4)
{
    try
    {
      for ( var i = 0; i < this.numPages; i++ )
      this.extractPages
      ({
            nStart: i,
            cPath: strPath + "//" + strFilename+"_" + (i+1) +".pdf" // (*)
      });
    }
    catch (e)
    {
      app.alert({cMsg: "Split aborted due to error: " + e})
    }
}

wx1wxc 发表于 2020-8-4 20:03:31

这 感觉好高深 :L

zzssmm 发表于 2020-8-5 08:56:29

具体是啥用途啊

iamadsl 发表于 2020-8-6 17:49:34

用AI分拆PDF?这就是在AI打开PDF,然后按画板另存?

reilong 发表于 2021-3-9 14:40:23

大大直接PO程式碼,太感謝了!:D

你懂的 发表于 2021-3-10 10:49:14

dao588 发表于 2021-3-15 08:46:17

这个脚本具体分拆什么,楼主可以详细介绍一下,不然真不知道作何用途

简单的幸福CG 发表于 2021-3-18 16:51:28

这要保存成什么格式?

174568324 发表于 2021-4-7 09:46:13

zzssmm 发表于 2020-8-5 08:56
具体是啥用途啊

就是一个PDF文件有连续的5页拆成 5个单独的PDF文件。

飞鸟的飞鸟 发表于 2021-4-8 09:22:10

没有图片,不知道这个有什么用:lol
页: [1] 2
查看完整版本: PDF分拆(AI脚本)