[Tex/LaTex] Add profile picture in awesome CV

fontawesometemplates

I'm using this nice CV template and my only problem is to insert a picture in the upper right corner of the sheet. Anyone can help me?. I have tried to use minipage but it does not work. Thanks a lot.

You can find the code here.

Here is my desired result:

output

Best Answer

I think the beautiful way to obtain your expected result is to modify the template. Here i provide you a ugly (in term of LaTeX behavior) solution to make it easy

% Print the header with above personal informations
\makecvheader
\begin{picture}(0,0)
    \put(460,50){\includegraphics[width=5em]{your_picture.jpeg}}
\end{picture}

This solution need to be avoided if it is possible but it works well for you.