I am trying to learn TeX and I need to add a photo placeholder and align it with a title.
I have the following code
\documentclass[margin,line]{res}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
\name{\LARGE Person's name}
\photo[64pt][0.15pt]{picture}
\end{document}
And I would like to have the following output:

The code above throws me an error when using \photo[64pt][0.15pt]{picture}.
By the way, this is for a CV with photo of the subject in German style (Lebenslauf).
How can I achieve this? I was also looking at this solution but I don't know how to make the placeholder stand above the line of the title.

