หากคุณต้องการแยกช่วงของหน้าเว็บคุณสามารถใช้สคริปต์ต่อไปนี้ซึ่งคุณเรียกเช่นนี้ (สันนิษฐานว่าคุณบันทึกไว้ในไฟล์ pdfextract.py ที่ใดที่หนึ่งบน PATH ของระบบของคุณเช่น / usr / local / bin และกำหนดการดำเนินการ การอนุญาตด้วย chmod 744 pdfextract.py):
pdfextract.py - ไฟล์ใน / เส้นทาง / ถึง / ใหญ่ / pdf - ไฟล์ออก / เส้นทาง / ไป / ใหม่ / pdf - เริ่มต้น - หยุด
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
import os
import subprocess as sp
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--file-in', required=True, type=str, dest='file_in')
parser.add_argument('--file-out', required=True, type=str, dest='file_out')
parser.add_argument('--start', required=True, type=int, dest='start', default=-1)
parser.add_argument('--stop', required=True, type=int, dest='stop', default=-1)
args = parser.parse_args()
assert os.path.isfile(args.file_in)
assert not os.path.isfile(args.file_out)
# remove temporary files
for el in os.listdir('/tmp'):
if os.path.isfile(os.path.join('/tmp', el)) and el[:12] == 'pdfseparate-':
os.remove(os.path.join('/tmp', el))
sp.check_call('pdfseparate -f {:d} -l {:d} {:s} /tmp/pdfseparate-%d.pdf'.format(args.start, args.stop, args.file_in), shell=True)
cmd_unite = 'pdfunite '
for i in range(args.start, args.stop + 1):
cmd_unite += '/tmp/pdfseparate-{:d}.pdf '.format(i)
cmd_unite += args.file_out
sp.check_call(cmd_unite, shell=True)
# remove temporary files
for el in os.listdir('/tmp'):
if os.path.isfile(os.path.join('/tmp', el)) and el[:12] == 'pdfseparate-':
os.remove(os.path.join('/tmp', el))
if __name__ == "__main__":
main()