How do I know if PDF pages are color or black-and-white?

后端 未结 7 2016
太阳男子
太阳男子 2021-01-30 02:02

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 whi

7条回答
  •  粉色の甜心
    2021-01-30 02:46

    Here is the ghostscript solution for Windows, which requires grep from GnuWin (http://gnuwin32.sourceforge.net/packages/grep.htm):

    Monochrome (Black and White) pages:

    gswin64c -q -o - -sDEVICE=inkcov DOCUMENT.pdf | grep "^ 0.00000 0.00000 0.00000" | find /c /v ""

    Color pages:

    gswin64c -q -o - -sDEVICE=inkcov DOCUMENT.pdf | grep -v "^ 0.00000 0.00000 0.00000" | find /c /v ""

    Total pages (you get this one easier from any pdf reader):

    gswin64c -q -o - -sDEVICE=inkcov DOCUMENT.pdf | find /c /v ""

提交回复
热议问题