From this question, there is a way to include images with a hyperlink using the media9 package included in TeXLive. I am trying to include a GIF image (supported directly by the media9 package) in a beamer slide:
\begin{frame}
\frametitle{Motivation from photography}
\includemedia[
width=0.3\linewidth,keepaspectratio,
activate=onclick,
%addresource=config.xml, %embedded configuration
addresource=../../../../Documents/Horse_galloping.gif, %embedded image file
%flashvars={xml=config.xml},
%passcontext %show the player’s context menu
]{}{StrobeMediaPlayback.swf}
\end{frame}
I still have some trouble: my tex file compiled successfully but when I opened the pdf file (adobe reader; Foxit doesn't show the gif image) and clicked on the window, it showed the following error: "we are unable to connect to the content you've requested. We apologize for the inconvenience" (TypeError - Error#1009). Some background: I compiled with pdflatex-biber-pdflatex-pdflatex sequence. I called the media9 package by
\usepackage{media9}
media9package, but maybe works ... http://tex.stackexchange.com/questions/74073/gif-image-in-beamer-presentation – juanuni May 16 '15 at 04:09\includegraphicsas usual? Is it animated GIF? Note that themedia9based method relies on using the Flash Player plugin in Adobe Reader which doesn't support animated GIFs. Moreover your code cannot work.StrobeMediaPlaybackisn't the right app, useSlideShow.swfas in the answer you cited. – AlexG May 16 '15 at 10:43