Here is a way by using \tikz for the ellipse, and then \stackinset to overlay it on the image. Arguments #2 and #4 to \stackinset are the offsets from the left, bottom of the image (horizontal offsets can be with respect to l, c, or r and vertical t, c, or b), while the 4 arguments to \solidcirc are the rotation angle, line thickness, and the x and y radii of the ellipse.
\documentclass{article}
\usepackage{stackengine,tikz,graphicx}
\newcommand\solidcirc[4][0]{\rotatebox{#1}{\tikz{\draw[line width=#2] (0,0)
arc [x radius=#3,y radius=#4,start angle=0,end angle=360];}}}
\begin{document}
\stackinset{l}{1in}{b}{.8in}{\textcolor{blue}{\solidcirc[-30]{3pt}{2.8}{1.0}}}
{\includegraphics{example-image}}
\end{document}
