我想将 2x2 pdf 文档拆分为其原始页面。每个页面由四个逻辑页面组成,这些逻辑页面的排列方式如本例所示。
我正在尝试使用python
和pypdf
:
import copy, sys
from pyPdf import PdfFileWriter, PdfFileReader
def ifel(condition, trueVal, falseVal):
if condition:
return trueVal
else:
return falseVal
input = PdfFileReader(file(sys.argv[1], "rb"))
output = PdfFileWriter()
for p in [input.getPage(i) for i in range(0,input.getNumPages())]:
(w, h) = p.mediaBox.upperRight
for j in range(0,4):
t = copy.copy(p)
t.mediaBox.lowerLeft = (ifel(j%2==1, w/2, 0), ifel(j<2, h/2, 0))
t.mediaBox.upperRight = (ifel(j%2==0, w/2, w), ifel(j>1, h/2, h))
output.addPage(t)
output.write(file("out.pdf", "wb"))
不幸的是,这个脚本没有按预期工作,因为它每四个逻辑页输出四次。由于我之前没有用python写过任何东西,我认为这是一个非常基本的问题,大概是由于复制操作。我真的很感激任何帮助。
编辑:嗯,我做了一些实验。我手动插入了页面宽度和高度,如下所示:
import copy, sys
from pyPdf import PdfFileWriter, PdfFileReader
def ifel(condition, trueVal, falseVal):
if condition:
return trueVal
else:
return falseVal
input = PdfFileReader(file(sys.argv[1], "rb"))
output = PdfFileWriter()
for p in [input.getPage(i) for i in range(0,input.getNumPages())]:
(w, h) = p.mediaBox.upperRight
for j in range(0,4):
t = copy.copy(p)
t.mediaBox.lowerLeft = (ifel(j%2==1, 841/2, 0), ifel(j<2, 595/2, 0))
t.mediaBox.upperRight = (ifel(j%2==0, 841/2, 841), ifel(j>1, 595/2, 595))
output.addPage(t)
output.write(file("out.pdf", "wb"))
此代码导致与我原来的相同的错误结果,但如果我现在注释掉该行(w, h) = p.mediaBox.upperRight
,一切正常!我找不到任何理由。元组(w, h)
甚至不再使用,那么删除它的定义如何改变任何东西呢?