[Tex/LaTex] Opacity of images in TikZ with beamer

beamergraphicstikz-pgftransparency

I'm creating some slides and want to integrate a (pixel) graphic in a TikZ picture with opacity less than 1. I expect this code to work:

\documentclass{beamer}
\usepackage{tikz,graphicx}

\begin{document}
  \begin{frame}{test}
    \begin{tikzpicture}
      \node[opacity=0.7] at (0,0) 
        {\includegraphics[width=2cm]{example-image.png}};
      \node at (4,0) {Some text};
    \end{tikzpicture}
  \end{frame}
\end{document}

Unfortunately, the whole picture vanishes:

enter image description here

Note that the same TikZ code works as expected with article. If I use opacity=0.7 on a text node, not the image, it also works.

What to do?

I use Evince and pdflatex from TeXlive 2013 on GNU/Linux in case that's relevant.

Best Answer

Upgrading to TeXlive 2014 (with the latest packages as of today) solved the problem.