在 beamer 中是否可以使插入的 pdf 图像上的所有颜色变暗?

在 beamer 中是否可以使插入的 pdf 图像上的所有颜色变暗?

我用它\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}

在此处输入图片描述

答案3

LaTeX可以做任何事情,但在这种情况下,使用专用图像软件处理扫描图像可能最容易。既然你说这是扫描,你可能需要一些擅长处理像素图形的软件。一个免费的例子是gimp

这样您就可以调整各种参数,其中包括ContrastBrightnessSaturation。在没有看到您的图像的情况下,我猜想调整这些参数可能会增强它的效果。

在此处输入图片描述

在此处输入图片描述

相关内容