Consider the code
\documentclass{book}
\usepackage{graphicx}
\usepackage[abs]{overpic}
\usepackage{tikz}
\definecolor{Gold}{RGB}{228,168,73}
\begin{document}
\thispagestyle{empty}
\begin{center}
\begin{tikzpicture}
\clip (0,0) ellipse (4.25cm and 5.5cm);
\node at (0,0) {\includegraphics[scale=2]{example-image-a}};
\end{tikzpicture}
\end{center}
\end{document}
which produces the cropped image:
QUESTION: How may I add a gold border (of a specified thickness) around the oval-shaped cropped image? I am using xelatex to compile.
Thank you.

