从多个PDF中提取相同的页面范围

时间:2017-07-28 20:54:29

标签: javascript adobe acrobat

javascript新手。我有一些VBA经验。

我有200多个文档,每个文档大约有200多页。我需要从每个唯一文档中提取相同系列的页面范围。我想根据提取页面的文件名来指定文件名(例如,如果当前文档被称为“John Smith Records”,我希望第1-15页的名称为“John Smith”并将文件另存为“John Smith Files”。在此先感谢您的帮助。

我使用以下内容作为基本指南,但我仍在努力:

/* Extract pages to folder */
// Regular expression used to acquire the base name of file
var re = /\.pdf$/i;
// filename is the base name of the file Acrobat is working on
var filename = this.documentFileName.replace(re, "");
try {
    for (var i = 0; i < this.numPages; i = i + 2) {
        var j = i + 1;
        if (j >= this.numPages)
            j = i;
        this.extractPages({
            nStart: i,
             nEnd: j,
            cPath: "/F/temp/output/" + filename + "_" + i + ".pdf"
        });
    }
} catch (e) {
    console.println("Aborted: " + e)
}

0 个答案:

没有答案