PDFをカラーページと白黒ページに分割


9

大きなPDFドキュメントを2つのファイルに自動的に分割したいと思います。1つのファイルには白黒のコンテンツのあるページのみを含め、もう1つのファイルにはカラーコンテンツのあるページのみを含めます。カラーページと黒/白ページは連続して実行されず、ドキュメント全体に散在しています。これを自動的に行うにはどうすればよいですか?


それを分割する実際の理由は何ですか?2つの異なるプリンターで印刷しますか?
セルジュ

@セルジ:正解。
SabreWolfy 2013


1
@SabreWolfy-この質問をチェックして、ほぼ同じにすることができます。私はsh回答から両方のスクリプトを数回正常に使用しました。
don_crissti 2013

回答:


3

Chris Rodgersは、PDFファイルをカラーページと白黒ページに分割するPerlスクリプトを作成しました。これがスクリプトへのリンクです:pdfcolor-1.2.tgz

スクリプトがWebサイトからどのように機能するかの詳細な説明:

- 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.