Come estrarre tutte le pagine di un PDF in singoli documenti PDF

1

Voglio poter estrarre ogni foglio di un PDF in un file PDF separato. Ho guardato in alto e in basso, ma sembra che non ci sia un modo automatico per farlo senza tornare agli hack di Automator (che sono aperto se qualcuno ha un esempio di un modo veramente pulito per farlo come un servizio e salvare i file alla directory di origine.)

Quindi, ad esempio:

File PDF: [pagina 1, pagina 2, pagina 3]

File PDF: [pagina 1], file PDF: [pagina 2], file PDF: [pagina 3]

    
posta freerangemonkey 21.10.2013 - 23:56
fonte

3 risposte

3

Ricordo di aver cercato di fare la stessa cosa alcuni anni fa ed ecco, ho ancora il link in archivio profondo: link

Un membro di MacRumors Forum chiamato Oligarch ha messo insieme un mucchio di strumenti pdf da riga di comando, che possono essere scaricati da questo link: link

Il comando pdfburst è ciò di cui hai bisogno:

NAME
     pdfburst -- burst (split) PDF documents into single pages

SYNOPSIS
     pdfburst file [path]

DESCRIPTION
     The pdfburst utility bursts (splits) the PDF document file into single
     pages which it writes to path, appended by an underscore character and
     zero-padded page numbers.

     If file is a single dash (-), the PDF document is read from the standard
     input.

     If path is omitted, the base name (last path component) of file is used
     and the single page files are created in the current working directory.

     If path ends with a slash (/), it designates a directory and the single
     page files are named with just the page number.

     Missing directories along path are created.
    
risposta data 22.10.2013 - 02:58
fonte
2

Un'altra opzione è usare pdftk :

pdftk input.pdf burst
    
risposta data 22.10.2013 - 06:05
fonte
1

Stai cercando pdfseparate . Da man pdfseparate :

DESCRIPTION
       pdfseparate extract single pages from a Portable Document Format (PDF).

       pdfseparate  reads  the  PDF  file PDF-file, extracts one or more pages, and writes one PDF file for each page to PDF-page-pattern, PDF-page-pattern should contain %d.  %d is
       replaced by the page number.

       The PDF-file should not be encrypted.

[...]

EXAMPLE
      pdfseparate sample.pdf sample-%d.pdf

      extracts all pages from sample.pdf, if i.e. sample.pdf has 3 pages, it produces

      sample-1.pdf, sample-2.pdf, sample-3.pdf
    
risposta data 20.10.2016 - 13:34
fonte

Leggi altre domande sui tag