如何通过轮廓线查看背景图像

如何通过轮廓线查看背景图像

我正在尝试制作一本书的封面,标题在图像上方有轮廓,您可以通过字母看到图像。本质上,我希望填充颜色(文本颜色)为“无”。

下面接近我想要的,但文字必须精确地放置在同一图像上以使其排列整齐,并且需要一个轮廓。 背景剪辑到文本 Tikz

还有这个,但我不知道如何使用它。 具有轮廓和透明度的 Tikz

这是 MWE,但显然我无法通过文本看到图像。

\documentclass{article}
\usepackage[outline]{contour}
\usepackage{xcolor}
\usepackage{fix-cm}
\usepackage{tikz}
\usepackage{graphicx}

\begin{document}

\begin{center}
    \tikz[remember picture,overlay] \node[opacity=0.3,inner sep=0pt] at (current page.center){\includegraphics[width=\paperwidth,height=\paperheight]{example-image}};
    \textsf{\textbf{\Huge\contour{black}{\textcolor{white}{TITLE}}}}
\end{center}

\end{document}

相关内容