In the MWE we can see shadowed nodes with texts. If we don't add a watermark, the result is as desired on the first TiKZ node, but with a watermark, the fill=write option required by the copy shadow option fills the node with white taking off a region of the water mark, so I added the text opacity and fill opacity options (shown on the second TiKZ picture), but in this case the shadow is dropped, predictably due to the way shadows on TiKZ works.
How can I achieve the look of the first node with its shadows and also transparency to not overlap the watermark?
MWE (requires example-grid-100x100bp.jpg from mwe package):
\documentclass{article}
\usepackage{tikz}\usetikzlibrary{shadows}
\usepackage{graphicx}
\usepackage[absolute]{textpos}
\parindent0pt
\begin{document}
\begin{textblock*}{\textwidth}(0pt,0pt)
\includegraphics[scale=2]{example-grid-100x100bp.jpg}
\end{textblock*}
\begin{tikzpicture}
\node[draw=black, fill=white, line width=1pt, rounded corners=3pt, copy shadow={top color=black, bottom color=black, shadow xshift=2pt, shadow yshift=-2pt}]{test1};
\end{tikzpicture}
\begin{tikzpicture}
\node[draw=black, fill=white, fill opacity=0, text opacity=1, line width=1pt, rounded corners=3pt, copy shadow={top color=black, bottom color=black, shadow xshift=2pt, shadow yshift=-2pt}]{test2};
\end{tikzpicture}
\end{document}

textblockbut generally speaking it doesn't have to be a watermark. Thank you! – Emilio Lazo May 17 '20 at 01:10