不使用 tikz 更改所含图形的不透明度

不使用 tikz 更改所含图形的不透明度

tikz我可以使用包使图形变得半透明

\begin{tikzpicture}
\node[opacity=0.5] at (0,0) {\includegraphics[width=0.4\textwidth]{myfigure.png}};
\end{tikzpicture}

但是,我想实现这个没有tikz 包(因为对我来说它\usepackage{tikz}大大减慢了编译过程)。

有什么办法可以做到这一点吗?

答案1

您可以使用透明包:

\documentclass{article}
\usepackage{graphicx,transparent}
\begin{document}
\includegraphics[width=0.4\textwidth]{example-image.png}

\texttransparent{0.5}{\includegraphics[width=0.4\textwidth]{example-image.png}}
\end{document}

在此处输入图片描述

相关内容