I have a figure consisting of three subfigures, but they are all contained within a single .png file. There's a blank space in the bottom-right portion of the figure, where I'd like the figure caption to appear. Is it possible to overlay the figure caption on top of the figure, like shown in the figure below? I tried using "overpic", with the MWE below, but it doesn't work as written.
\documentclass[]{article}%
\usepackage{graphicx}
\usepackage[demo,abs]{overpic}
\begin{document}
\begin{figure}[!ht]
\centering
\begin{overpic}[width=\textwidth]{TEMP.png}
\caption{Caption goes here}
\end{overpic}
\label{fig}
\end{figure}
\end{document}


