PDF를 컬러 및 흑백 페이지로 분할 싶습니다. 한 파일에는

큰 PDF 문서를 두 개의 파일로 자동 분할하고 싶습니다. 한 파일에는 흑백 컨텐츠가있는 페이지 만 포함하고 다른 파일에는 컬러 컨텐츠가있는 페이지 만 포함해야합니다. 컬러 및 흑백 페이지는 연속적으로 실행되지 않으며 문서 전체에 산재되어 있습니다. 이 작업을 자동으로 수행하려면 어떻게해야합니까?



답변

Chris Rodgers 는 PDF 파일을 컬러 및 흑백 페이지로 분할하기 위해 Perl 스크립트를 작성했습니다. 다음은 스크립트에 대한 링크입니다 pdfcolor – 1.2.tgz은 .

웹 사이트에서 스크립트가 작동하는 방식에 대한 자세한 설명 :

- Perl script
- uses:
– “pscolor” (C, “using GS DLL as a ps colorpage separator”) by Carsten Hammer
– “joinPDF” (Java, “Command line tool to join and split PDF files”, for mac) by Gerard Briscoe
- Has hardcoded paths in shell scripts “splitPDF” and “joinPDF”
- Depends on flex
- Depends on libgs-dev
- GNU GPL 2.0

How it works:
split PDF into single pages in temporary location
use pscolor to detect whether color is on the page
reassemble pages with color and pages without color into two pdf files.

Does not work when adjusting said hardcoded paths.