[Tex/LaTex] Insert image between \title and \author

graphics

I am trying to insert an image on the title page between the actual title and the author.
I tried using \titlepic{\includegraphics[width=70mm]{img/myimg.png}} but this always inserts the image after title, the author and the date.
Is there a way to insert the image exactly between the title and the author?
Here is an example document showcasing the problem:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{titlepic}
\usepackage{graphicx}

\title{LaTeX Test Document}
\author{John Smith }
\date{September 2018}
\titlepic{\includegraphics[width=70mm]{myimage.png}}

\begin{document}
\maketitle
\end{document}

Results in the following output:

enter image description here

Best Answer

You could try titling package:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\usepackage{titling}
\pretitle{\begin{center}\fontsize{18bp}{18bp}\selectfont}
    \posttitle{\vspace{14bp}\par\includegraphics[width=70mm]{respect-cat}\par\end{center}}
\preauthor{\begin{center}\fontsize{14bp}{14bp}\selectfont}
    \postauthor{\par\end{center}}
\predate{\begin{center}}
    \postdate{\par\end{center} }    

\title{titling-proof}
\author{Kyu96}
\date{\today}

\begin{document}

\maketitle

\end{document}

enter image description here

You can play with the sizes ...