PDF의 모든 페이지를 개별 PDF 문서로 추출하는 방법


1

PDF의 각 시트를 별도의 PDF 파일로 추출 할 수 있기를 원합니다. 나는 높고 낮게 보였지만 Automator 핵으로 되 돌리지 않고 자동으로 수행 할 수있는 방법이없는 것 같습니다 (누군가가 서비스 로이 작업을 수행하고 파일을 저장하는 정말 깨끗한 방법의 예가 있다면 열 수 있습니다) 소스 디렉토리로 이동하십시오.)

예를 들어,

PDF 파일 : [1 페이지, 2 페이지, 3 페이지]

PDF 파일 : [페이지 1], PDF 파일 : [페이지 2], PDF 파일 : [페이지 3]

답변:


3

나는 몇 년 전에 똑같은 일을하고 기억하고 보라, 나는 여전히 깊은 아카이브에 링크를 가지고 있었다 : http://forums.macrumors.com/showthread.php?t=1354754

Oligarch라는 MacRumors 포럼 회원은 다음 링크에서 다운로드 할 수있는 여러 명령 행 pdf 도구를 구성했습니다. http://users.skynet.be/tools/

pdfburst 명령은 다음과 같습니다.

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.

1
Way Back Machine을 통해 계속 찾을 수 있습니다. web.archive.org/web/20150619012643/http://users.skynet.be/tools/…
cde


1

찾고 있습니다 pdfseparate. 보낸 사람 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
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.