使用 MikTeX 中的 dvips 将彩色图像转换为灰度图像

使用 MikTeX 中的 dvips 将彩色图像转换为灰度图像

我找到了如何将彩色图像转换为灰度(黑白)的答案,请参阅以下链接:

黑白 PNG 图形

但是如果我按照建议操作,即 dvips -I g ,则会出现一些错误“dvips:!无效选项`-I'。尝试--help获取更多信息。”,请指出我的标签出了什么问题,我的标签如下:

\documentclass{book}
\usepackage{color,graphicx}
\begin{document}

\begin{figure}
\centerline{\includegraphics{Color.eps}}
\end{figure}

\end{document}

答案1

最后我得到了解决我的需求的答案,请参考https://groups.google.com/forum/#!msg/comp.text.tex/E2EtYQC-A0Y/RoLCFm_5CAAJ特别感谢 Herbert...以及以下给出的答案:

\documentclass{book}
\usepackage{graphicx}
\def\setGray{\special{ps:
    true setglobal globaldict begin
    /setrgbcolor { 0.07 mul exch 0.71 mul add exch 0.21 mul add setgray
} def
    end false setglobal
}}
\AtBeginDocument{\setGray}
\begin{document}
\begin{figure}
\setGray
\centerline{\includegraphics{colorrgbmake2.eps}}
\end{figure}

\clearpage

\begin{figure}
\setGray
\centerline{\includegraphics{colorrgbmake2.eps}}
\end{figure}

\end{document} 

相关内容