PDF를 컬러 및 흑백 페이지로 분할


9

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


그것을 나누는 실제 이유는 무엇입니까? 두 개의 다른 프린터로 인쇄 하시겠습니까?
Serge

@Serge : 맞습니다.
SabreWolfy


1
@SabreWolfy - 당신은에이 질문을 확인 할 수 있습니다 , 그래서 거의 동일하다합니다. sh답변에서 두 스크립트를 여러 번 성공적으로 사용 했습니다.
don_crissti

답변:


3

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