Given a set of PDF files among which some pages are color and the remaining are black & white, is there any program to find out among the given pages which are color and which are black & white? This would be useful, for instance, in printing out a thesis, and only spending extra to print the color pages. Bonus points for someone who takes into account double sided printing, and sends an appropriate black and white page to the color printer if it is are followed by a color page on the opposite side.
|
This is one of the most interesting questions I've seen! I agree with some of the other posts that rendering to a bitmap and then analyzing the bitmap will be the most reliable solution. For simple PDFs, here's a faster but less complete approach.
My solution below does #1 and half of #2. The other half of #2 would be to follow up with user-defined color, which involves looking up the /ColorSpace entries in the page and decoding them -- contact me offline if this is interesting to you, as it's very doable but not in 5 minutes. First the main program:
And then here's the helper renderer that handles color directives on each page:
|
|||
|
|
|
It is possible to use the Image Magick tool An example is:
where PAGE is the page starting from 0, not 1. If the page selection is not used all pages will be collapsed to one, which is not what you want. I wrote the following BASH script which uses Using the outputted space separated list the colored PDF pages can be extracted using
|
||||
|
|
|
I would try to do it like that, although there might be other easier solutions, and I'm curious to hear them, I just want to give it try:
For the page count, you can probably translate that without too much effort to Perl. It's basically a regex. It's also said that:
To extract the image, you can use ImageMagick to do that. Or see this question. Finally, to get whether it is black and white, it depends if you mean literally black and white or grayscale. For black and white, you should only have, well, black and white in all the image. If you want to see grayscale, now, it's really not my speciality but I guess you could see if the averages of the red, the green and the blue are close to each other or if the original image and a grayscale converted one are close to each other. Hope it gives some hints to help you go further. |
|||||
|
|
ImageMagick has some built-in methods for image comparison. http://www.imagemagick.org/Usage/compare/#type_general There are some Perl APIs for ImageMagick, so maybe if you cleverly combine these with a PDF to Image converter you can find a way to do your black & white test. |
|||
|
|
|
The script from Martin Scharrer is great. It contains a minor bug: It counts two pages which contain color and are directly consecutive twice. I fixed that. In addition the script now counts the pages and lists the grayscale pages for double-paged printing. Also it prints the pages comma separated, so the output can directly be used for printing from a PDF viewer. I've added the code, but you can download it here, too. Cheers, timeshift
|
|||
|
|
protected by Will♦ Aug 12 '10 at 13:43
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.