如何将pdf的第一页移到最后一页?

时间:2016-08-14 20:51:42

标签: javascript pdf acrobat

我在工作中使用Adobe Acrobat Pro 9来编辑大量扫描的pdf文档。这些都不是OCRed。我需要快速邮寄这些文件的信息在第一页上,但我的老板希望这页面在后面。我可以使用缩略图将第一页移动到后面,但是对于大量超过20页的pdf,这会变得乏味。到目前为止,我正在尝试修改我在Bremen_Matt的帖子中找到的脚本:

for (i = 0; i <= this.numPages/2-1; i++)
    this.movePage(this.numPages-1,this.numPages/2-i-1);

How to write javascript to reorder pages of a pdf document?

我几乎可以让它工作,但是当我尝试时:

for(i=0;i<=this.numPages/2-2;)
    this.movePage(this.numPages-1);

for(i=0;i<=this.numPages;i)
     this.movePage(this.numPages-1);

我最终崩溃了程序。你有什么想法吗?谢谢!

0 个答案:

没有答案