I would like to show a picture (in the example replaced by a red rectangle), but only parts of this picture should be visible, defined by a text. So, in this example only the part of the picture behind the 'TEST' will appear in the final result. The text probably has to have opacity=0, but how to cover the rest of picture?
\documentclass{scrartcl}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[red] (0,0) rectangle (10,5);
\node[font=\Huge] at (5,2.5) {TEST};
\end{tikzpicture}
\end{document}


