I would like to zoom in on one of the 12 images that I have organized in 3 columns. There are 4 images per column, all the same height and width.
There is one image that I would like to zoom in on and highlight in a circle in the center of the slide.
I have been trying to accomplish this using tikzpicture but, as you will be able to see in my MWE, the zoom is not being "superimposed" on the slide, but rather interfering with the organization of the other images. Besides that, I am not zooming in on the entire image, but rather on a part of it.
How can I fix my code to arrive at my desired final result?
\documentclass[10pt, compress]{beamer}
\usepackage{tikz}
\usetikzlibrary{spy}
\begin{frame}
\begin{columns}[t]
\column{.3\textwidth}
\centering
\includegraphics[width=3cm,height=1.75cm]{img1}\\
\includegraphics[width=3cm,height=1.75cm]{img2}\\
\includegraphics[width=3cm,height=1.75cm]{img3}\\
\includegraphics[width=3cm,height=1.75cm]{img4}
\column{.3\textwidth}
\centering
\includegraphics[width=3cm,height=1.75cm]{img5}\\
\includegraphics[width=3cm,height=1.75cm]{img6}\\
\includegraphics[width=3cm,height=1.75cm]{img7}\\
\includegraphics[width=3cm,height=1.75cm]{img8}\\
\column{.3\textwidth}
\centering
\includegraphics[width=3cm,height=1.75cm]{img9}\\
%%% this is the image that I want to zoom in on
\begin{tikzpicture}[
spy using outlines={
circle,
magnification=10,
size=5cm,
connect spies}]
\node[inner sep=0pt] {\pgfimage[width=3cm,height=1.75cm]{img10}};
\only<2>{\spy[red!70!black] on (0.88,0.15) in node at (.5\textwidth,0);}
\end{tikzpicture}
\includegraphics[width=3cm,height=1.75cm]{img11}\\
\includegraphics[width=3cm,height=1.75cm]{img12}\\
\end{columns}
\end{frame}
\end{document}
Basically, my main question is how can I zoom in on ONE entire image of the 12 above?
Here is what is happening, so far:



\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Henri Menke Feb 26 '15 at 17:17