Like so many others before me, I am attempting to recreate my institute's PowerPoint theme in beamer. On our title slide, we have an image flush right and the title contents is to the left and right aligned. Searching, I found this answer on how to add the image itself to the slide; however, this causes the image to overlap the text (as is well known). I attempted to place the text in another text block, but I could not get the margins of the text block to mimic those of the default frame. I also tried placing the text in a tikz node, but that did not work either. I then went looking for how to adjust the margins on a single frame but couldn't find a method that worked.
Ultimately, I fiddled with a columns environment and got something to work. For example:
\documentclass{beamer}
\usepackage{mwe}
\usepackage[overlay,absolute]{textpos}
\title{Super Awesome Presentation with a Really Long Title}
\subtitle{Because it is really cool}
\author{Me, Myself, and I}
\institute{Distinguished Institute,\par%
Prestigious, Locale, 12345}
\date{\today}
\makeatletter
\defbeamertemplate*{title page}{custom}[1][]
{%
\newlength{\imwidth}
\setlength{\imwidth}{50mm}
\newlength{\offset}
\setlength{\offset}{\dimexpr\paperwidth-\imwidth}
\begin{textblock*}{\imwidth}(\offset, 0mm)
\includegraphics[width=\imwidth,height=\paperheight]{example-image}
\end{textblock*}
\begin{columns}
\begin{column}{\dimexpr\offset-\beamer@rightmargin}
\vfill
\inserttitle\par
\insertsubtitle\par
\bigskip
\insertauthor\par
\insertinstitute\par
\bigskip
\insertdate\par
\end{column}
\begin{column}{\imwidth}
\end{column}
\end{columns}
}
\makeatother
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
While this works, this doesn't strike me as the cleanest way to do this. So, my question is: How can I absolutely position an image on a beamer slide and have the remaining space respect the default beamer formatting?

tikzcan handle the task too. However, I see that this still relies oncolumnsto restrict the remaining area which is what I already do. Do you have any thoughts on how to reduce the area for the title without usingcolumns? – Keith Prussing Aug 15 '18 at 18:21minipageinstead. – samcarter_is_at_topanswers.xyz Aug 15 '18 at 19:13