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})
}
}
这 感觉好高深 :L 具体是啥用途啊 用AI分拆PDF?这就是在AI打开PDF,然后按画板另存? 大大直接PO程式碼,太感謝了!:D 这个脚本具体分拆什么,楼主可以详细介绍一下,不然真不知道作何用途 这要保存成什么格式? zzssmm 发表于 2020-8-5 08:56
具体是啥用途啊
就是一个PDF文件有连续的5页拆成 5个单独的PDF文件。 没有图片,不知道这个有什么用:lol
页:
[1]
2