I want to have a frame background image in beamer that has opacity. I am using the following code:
\documentclass[aspectratio=169]{beamer} \usepackage{graphicx} \usepackage{tikz} \begin{document} % Define the background image and its transparency \newcommand\BackgroundPic{ \begin{tikzpicture}[remember picture,overlay] \node[opacity=0.1, at=(current page.center)] { \includegraphics[width=\paperwidth, height=\paperheight]{vangoghwaves.tiff} }; \end{tikzpicture} } \begin{frame} \BackgroundPic \frametitle{Your Slide Title} Your content goes here. \end{frame} \end{document} But the image opacity does not change. I have also tried:
\usebackgroundtemplate{% \tikz\node[opacity=0.3] {\includegraphics[height=\paperheight,width=\paperwidth]{vangoghwaves.tiff}};} in the preamble and various others, but it simply remains stubbornly opaque.
Any suggestions welcome. I am using Texifier (which is up to date), and have also tried various different typesetting options to no avail.
Added a screenshot here:

\includegraphics[width=\paperwidth, height=\paperheight]{example-image}then it works just fine, and the is a clear difference when you change the opacity.\usepackage{graphicx}, beamer already loads it.