It is possible to include a graphic image and place a hyperlink reference within it, directly in TeX? I've created a M(non)WE example below to try and demonstrate what I'm thinking. (This becomes a MWE if you remove the \special statement in the first \figure).
Basically I want to include graphics and create hyperlinks between them (note the hypertarget in the second figure). I can add hyperlinks to PDF using Ghostscript, so wondered if the same could be achieved using the \special command in TeX? Currently I'm using pdfLaTeX.
\documentclass{article}
\usepackage[a3paper,landscape]{geometry}
\usepackage{graphicx}
\usepackage{hyperref}
\begin{document}
\begin{figure}[p]
\centering
\includegraphics[viewport=597 1069 1088 1320,clip=true]{parent.pdf}
\caption{My Image Caption}
\special{ps:
[ /Rect [602 1083 1087 1320]
/Border [0 0 2]
/Color [1 0 0]
/Dest link_child_page
/Subtype /Link
/ANN pdfmark
}
\end{figure}
\clearpage
\begin{figure}[p]
\centering
\includegraphics[viewport=750 1166 935 1223,clip=true]{child.pdf}
\caption{My Child}
\end{figure}
\hypertarget{link_child_page}{}
\clearpage
\end{document}