我用它\includegraphic{image.pdf}
来将图像插入到 Beamer 演示文稿中。我拥有的图像是扫描的绘制图表。图表的一部分用浅蓝色勾勒出来,在纸上看起来还不错,但扫描后被周围的白纸冲淡了。
在 beamer 中有没有办法让 pdf 图像的所有颜色变暗?
答案1
您也许可以使用decodearray
的功能\includegraphics
。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=3in]{warthog18}
\includegraphics[decodearray={0 .75 0 .75 0 1},width=3in]{warthog18}\par
\includegraphics[width=3in]{example-image.jpg}
\includegraphics[decodearray={0 .75 0 .75 0 .75},width=3in]{example-image.jpg}
\end{document}
答案2
您可以尝试将 PDF 文件绘制到灰色矩形中blend group
(p.340,pgfmanual)。multiply
混合模式对于使图像变暗很有用。
前任:
\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}[line width=0pt]
\begin{scope}[blend group=multiply]
\foreach \prop[count=\c] in {0,10,...,100}{
\node[inner sep=0] at (0,\c) {\includegraphics[width=1cm]{tiger}};
\fill[white!\prop!black] (0,\c) ++(-.5,-.5) rectangle ++(1,1);
}
\end{scope}
\end{tikzpicture}
\end{document}