[Tex/LaTex] Challenge! Create aTikZ style to mimic mirror reflection (with option for curvature distortion)

tikz-pgf

When we see images that are reflected at a mirror, or at the eyes of someone, or at the water, there is some light effect that tells our brains the image we are seeing is a reflection.

Some of Escher pictures illustrate this very well: http://en.wikipedia.org/wiki/Hand_with_Reflecting_Sphere or http://www.taschen.com/media/images/960/teaser_gr_25_escher_magic_mirror_top_1208151636_id_600031.jpg

I'm looking for ideas or suggestions on how to create this effect using TikZ.
The concept is to have a style that we could apply to an arbitrary picture to obtain the picture looking as if it were a reflection.

I'm not trying to simply mirror a TikZ picture but rather trying to make appear as if the picture is a reflection. I will post a bounty as soon as I can to reward the best answer. The MWE requirement clearly does not apply here.

Best Answer

Run with latex->dvips->ps2pdf. The image must be an eps type (vector graphics):

\documentclass{article} 
\usepackage{pst-mirror,graphicx}
\begin{document}

 \begin{pspicture}(-5,-5)(5,5)
 \psframe*(-5,-5)(5,5)
 \pscircle*[linecolor=blue!50]{!7 2 sqrt div}
 \psset{Rayon=7}
 \pstSphereImage(5,0,0){tiger.eps}
 \pstSphereGrid[linecolor=white,linewidth=0.01,grille=5,Ymin=-100,Ymax=100,Xmax=100,Xmin=-100](5,0,0)%
 \end{pspicture}

 \reflectbox{\includegraphics[width=4cm]{tiger}}

\end{document}

enter image description here