I am trying to overlay a shaded transparent box on an image, to be able to write inside the box as in:
\documentclass{report}
\usepackage{xcolor}
\definecolor{lblue}{RGB}{15,77,158}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[] at (0,0) {\includegraphics[width=0.9\textwidth,]{IMG_2124_Everest.jpg}};
\shade [left color=lblue, right color=lblue, opacity=0.6] (-4,1) rectangle (4,2.5);
\node[shift={(-0.0cm,1.73cm)}] at (0,0) { \textcolor{white}{\Huge\textbf{Mount Everest}} };
\end{tikzpicture}
\end{document}
and I would like to fade the border of the shaded box in order to decrease the visibility of the line that defines it.
I have read:
but I am lost on how to apply it to a shaded box. Is that even possible?
Image from: http://upload.wikimedia.org/wikipedia/commons/0/00/IMG_2124_Everest.jpg


