Interleaving Pages ऑर्डर के साथ 2 पीडीएफ फाइलों को कैसे मर्ज किया जाए?


13

मुझे रैखिक बल्क स्कैनर के साथ स्कैन करने के लिए एक डबल-साइड-प्रिंटेड मल्टीपेज दस्तावेज़ मिला है। इसलिए, परिणाम के रूप में मुझे 2 पीडीएफ फाइलें मिलती हैं: एक जिसमें सभी विषम पृष्ठ होते हैं और दूसरा सभी पृष्ठों से युक्त होता है। मुझे उन्हें प्राकृतिक तरीके से मिलाने की जरूरत है:

1. <- 1.1. (odd.pdf page 1 to result.pdf page 1)
2. <- 2.1. (even.pdf page 1 to result.pdf page 2)
3. <- 1.2. (odd.pdf page 2 to result.pdf page 3)
4. <- 2.2. (even.pdf page 2 to result.pdf page 4)

आदि।


बस एक पीडीएफ पार्सर खोजें और सामान की तरह एक मर्ज करें।
डेज़ी

1
यदि स्टीफन आपकी समस्या का समाधान नहीं करता है, तो आप पर्ल मॉड्यूल की कोशिश कर सकते हैं CAM::PDF, मैं आपकी स्क्रिप्ट बाद में दूंगा। क्या दो pdf में एक ही पृष्ठ संख्या है?
डेज़ी

जवाबों:


7

से कमांड pdfseparateऔर pdfuniteकमांड देखें poppler-utils। प्रत्येक दस्तावेज़ से पृष्ठों को अलग-अलग फ़ाइलों में अलग करना, और दूसरा उन्हें उस क्रम में मर्ज करना जिसे आप एक नए दस्तावेज़ में चाहते हैं।

यह भी ध्यान दें कि चूँकि स्कैनर आपको रेखापुंज चित्र वैसे भी देते हैं (जो कुछ आपकी तरह एक पीडीएफ फाइलों में सम्‍मिलित कर सकते हैं), हो सकता है कि आप इसके बजाय इसे आउटपुट छवियों (png, tiff ...) से कॉन्फ़िगर कर सकें और एक PDF में संगति कर सकें। ImageMagick।


ऐसा लगता है कि मुझे क्या चाहिए, चलो कोशिश करते हैं ...
इवान

1
वास्तव में। अति उत्कृष्ट। उपयोग करने के लिए सरल मुझे सही चाहिए। वैसे, मेरे पास निश्चित रूप से पूछने और समाधान करने से पहले गुगली है, जो मैंने पाया है कि वे अधिक जटिल थे।
इवान

मैंने उबंटू 18.04 (@TCF से नीचे की सहायक स्क्रिप्ट के साथ) पर यह कोशिश की और यह दो ~ 5.5Mb फ़ाइलों को एक 197Mb फ़ाइल में बदल दिया, इसलिए जब यह काम किया, तो यह प्रयोग करने योग्य नहीं था (मुझे परिणाम ईमेल करने की आवश्यकता थी!) ।
रूबेन थॉमस

12

pdftk में एक फेरबदल आदेश है जो पृष्ठों को जोड़ता है:

pdftk A=odd.pdf B=even.pdf shuffle A B output collated.pdf

1
यह मेरे लिए अच्छी तरह से काम करता है, लेकिन समान पृष्ठों को उलटने के लिए एक ट्वीक के साथ (यह देखते हुए कि मैंने उन्हें पृष्ठों के क्रम को पीछे किए बिना पहले स्कैन किया है): pdftk A = recto.pdf B = verso.pdf फेरबदल A Bend-1 आउटपुट टकराया। पीडीएफ
रूबेन थॉमस

शानदार, धन्यवाद - यह पूरी तरह से काम करता है
शिशु

2

बस एक bashत्वरित शॉट का उपयोग कर pdfjam:

इनपुट तर्कों की एक सरणी बनाएँ:

for k in $(seq 1 ${N_PAGES}); do
    PAGES+=(odd.pdf);
    PAGES+=($k);
    PAGES+=(even.pdf);
    PAGES+=($k);
done

इसके लिए आपको इसे इनपुट सूची के रूप में उपयोग करने की अनुमति देनी चाहिए pdfjoin:

 pdfjoin ${PAGES[@]} --outfile shuffled.pdf

2
यह ध्यान दिया जाना चाहिए कि pdfjoinएक रैपर स्क्रिप्ट है pdfjamजिसके चारों ओर pdfpagesLaTeX पैकेज (और pdflatex) के आसपास एक रैपर स्क्रिप्ट है, इसलिए इसका मतलब है कि यह एक निर्भरता के रूप में LaTeX लाता है।
स्टीफन चेजलस

1

आप PDFsam बेसिक (फ्री और ओपन सोर्स) में मिक्स मॉड्यूल का उपयोग कर सकते हैं या सेरा में वैकल्पिक और मिक्स सुविधा का उपयोग करके इसे ऑनलाइन कर सकते हैं


1
सबसे अच्छा समाधान नीचे हाथ: खुला स्रोत, कोई स्थापना की आवश्यकता है। 2 क्लिक और किया;)
नथन

0

मैं मूल रूप से एक ही काम करना चाह रहा था, और स्टीफन चेज़ेलस का जवाब बहुत मददगार था। मैं यह अक्सर पर्याप्त करता हूं कि मैंने चीजों को स्वचालित करने के लिए एक साधारण पायथन स्क्रिप्ट लिखी, जो उसने सुझाए गए आदेशों का उपयोग करके किया। डिफ़ॉल्ट रूप से, यह सम पृष्ठों के क्रम को उलट देता है, लेकिन इसे कमांड लाइन के झंडे के साथ दबाया जा सकता है।

प्रश्न पुराना है, इसलिए मुझे उम्मीद है कि मूल प्रश्नकर्ता की जरूरतें पहले ही पूरी हो चुकी हैं। हालांकि, यह संभव है कि स्क्रिप्ट भविष्य में यहां पहुंचने वाले लोगों के लिए उपयोगी होगी, इसलिए मैंने इसे नीचे रखा है।

#!/usr/bin/python
"""A simple script to merge two PDFs."""

import argparse
from os import listdir
from os.path import join as opjoin
import shutil
from subprocess import check_call, CalledProcessError
import tempfile

SEPARATE = 'pdfseparate %s %s'
MERGE = 'pdfunite %s %s'

def my_exec(command):
    """Execute a command from a shell, ignoring errors."""
    try:
        check_call(command, shell=True)
    except CalledProcessError:
        pass

def run(odd, even, out, reverse_odd=False, reverse_even=True):
    """Interleave odd and even pages from two PDF files."""
    folder = tempfile.mkdtemp()
    my_exec(SEPARATE % (odd, opjoin(folder, 'odd%d.pdf')))
    my_exec(SEPARATE % (even, opjoin(folder, 'even%d.pdf')))
    odd_files = []
    even_files = []
    for curr_file in listdir(folder):
        filepath = opjoin(folder, curr_file)
        if curr_file.startswith('odd'):
            odd_files.append((filepath, int(curr_file[3:-4])))
        elif curr_file.startswith('even'):
            even_files.append((filepath, int(curr_file[4:-4])))
    func = lambda x: x[1]
    odd_files.sort(key=func, reverse=reverse_odd)
    even_files.sort(key=func, reverse=reverse_even)
    parts = []
    for line in zip(odd_files, even_files):
        parts.append(line[0][0])
        parts.append(line[1][0])
    my_exec(MERGE % (' '.join(parts), out))
    shutil.rmtree(folder)

if __name__ == '__main__':
    parser = argparse.ArgumentParser(description='Merge two PDF files.')
    parser.add_argument('odd_pages', help='PDF containing the odd pages.')
    parser.add_argument('even_pages', help='PDF containing the even pages.')
    parser.add_argument('output_file', help='The target output file.')
    parser.add_argument('--reverse-odd', action='store_true', 
                        help='Insert the odd pages in reverse order.')
    parser.add_argument('--no-reverse-even', action='store_true',
                        help='Suppress reversal of the even pages.')
    args = parser.parse_args()
    run(args.odd_pages, args.even_pages, args.output_file,
        args.reverse_odd, not args.no_reverse_even)

0

मैं यह करने के लिए बैश स्क्रिप्ट में आया था, यह मानता है कि आपने उल्टे क्रम में भी पृष्ठों को स्कैन किया है, लेकिन आप इसे यह -rकहते हुए लाइन में हटा सकते हैं evenpages=($(ls "$evenbase-$key-"* | sort -r))(यह पंक्ति 46 है)

#!/bin/bash
# Copyright Fabien André <fabien.andre@xion345.info>
# Distributed under the MIT license
# This script interleaves pages from two distinct PDF files and produces an
# output PDF file. The odd pages are taken from a first PDF file and the even
# pages are taken from a second PDF file passed respectively as first and second
# argument.
# The first two pages of the output file are the first page of the
# odd pages PDF file and the *last* page of the even pages PDF file. The two
# following pages are the second page of the odd pages PDF file and the
# second to last page of the even pages PDF file and so on.
#
# This is useful if you have two-sided documents scanned each side on a
# different file as it can happen when using a one-sided Automatic Document
# Feeder (ADF)
#
# It does a similar job to :
# https://github.com/weltonrodrigo/pdfapi2/blob/46434ab3f108902db2bc49bcf06f66544688f553/contrib/pdf-interleave.pl
# but only requires bash (> 4.0) and poppler utils.
# Print usage/help message
function usage {
echo "Usage: $0 <PDF-even-pages-file> <PDF-odd-pages-file>"
exit 1
}
# Add leading zeros to pad numbers in filenames matching the pattern
# $prefix$number.pdf. This allows filenames to be easily sorted using
# sort.
# $1 : The prefix of the filenames to consider
function add_leading_zero {
prefix=$1
baseprefix=$(basename $prefix | sed -e 's/[]\/()$*.^|[]/\\&/g')
dirprefix=$(dirname $prefix)
for filename in "$prefix"*".pdf"
do
base=$(basename "$filename")
index=$(echo "$base" | sed -rn "s/$baseprefix([0-9]+).pdf$/\1/p")
newbase=$(printf "$baseprefix%04d.pdf" $index)
mv $filename "$dirprefix/$newbase"
done
}
# Interleave pages from two distinct PDF files and produce an output PDF file.
# Note that the pages from the even pages file (second file) will be used in
# the reverse order (last page first).
# $1 : Odd pages filename
# $2 : Odd pages filename with extension removed
# $3 : Even pages filename
# $4 : Even pages filename with extension removed
# $5 : Unique key used for temporary files
# $6 : Output file
function pdfinterleave {
oddfile=$1
oddbase=$2
evenfile=$3
evenbase=$4
key=$5
outfile=$6
# Odd pages
pdfseparate $oddfile "$oddbase-$key-%d.pdf"
add_leading_zero "$oddbase-$key-"
oddpages=($(ls "$oddbase-$key-"* | sort))
# Even pages
pdfseparate $evenfile "$evenbase-$key-%d.pdf"
add_leading_zero "$evenbase-$key-"
evenpages=($(ls "$evenbase-$key-"* | sort -r))
# Interleave pages
pages=()
for((i=0;i<${#oddpages[@]};i++))
do
pages+=(${oddpages[i]})
pages+=(${evenpages[i]})
done
pdfunite ${pages[@]} "$outfile"
rm ${oddpages[@]}
rm ${evenpages[@]}
}
if [ $# -lt 2 ]
then
usage
fi
if [ $1 == $2 ]
then
echo "Odd pages file and even pages file must be different." >&2
exit 1
fi
if ! hash pdfunite 2>/dev/null || ! hash pdfseparate 2>/dev/null
then
echo "This script requires pdfunite and pdfseparate from poppler utils" \
"to be in the PATH. On Debian based systems, they are found in the" \
"poppler-utils package"
exit 1
fi
oddbase=${1%.*}
evenbase=${2%.*}
odddir=$(dirname $oddbase)
oddfile=$(basename $oddbase)
evenfile=$(basename $evenbase)
outfile="$odddir/$oddfile-$evenfile-interleaved.pdf"
key=$(tr -dc "[:alpha:]" < /dev/urandom | head -c 8)
if [ -e $outfile ]
then
echo "Output file $outfile already exists" >&2
exit 1
fi
pdfinterleave $1 $oddbase $2 $evenbase $key $outfile
# SO - Bash command that prints a message on stderr
# http://stackoverflow.com/questions/2643165/bash-command-that-prints-a-message-on-stderr
# SO - Check if a program exists from a bash script
# http://stackoverflow.com/questions/592620/check-if-a-program-exists-from-a-bash-script
# SO - How to debug a bash script?
# http://stackoverflow.com/questions/951336/how-to-debug-a-bash-script
# SO - Escape a string for sed search pattern
# http://stackoverflow.com/questions/407523/escape-a-string-for-sed-search-pattern

स्रोत

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.