I would like to include a full width image, aligned to the top of a frame with a frame title. The problem is, I cannot get rid of a line of white space between the orange frame title header and the lion image.
\documentclass[t]{beamer}
% Frames are 128x96mm and top-aligned by default.
% Calculate with \sidebarwidth
\usepackage{calc}
\newlength{\sidebarwidth}
% Theme
\setlength{\sidebarwidth}{28mm}
\usetheme[height=16mm, right, width=\sidebarwidth]{Goettingen}
% Hence, a full frame image is 100x80mm
\usecolortheme{crane}
% Include full-width graphics
\usepackage{graphicx}
\newcommand{\includefullwidthgx}[2][]{%
\noindent\makebox[\columnwidth]{\includegraphics[width=128mm-\sidebarwidth, #1]{#2}}%
}%
\begin{document}
\begin{frame}
\frametitle{frame title text}
\includefullwidthgx{lion.jpg}
\end{frame}
\end{document}


width(orheight) forincludegraphics, optionkeepaspectratioistrueby default, so image keeps its original proportions. If you want to cover all this area select another image or also fix optionheight. – Ignasi Apr 23 '13 at 12:19\vspace{-\baselineskip}before the\includefullwidthgx{lion.jpg}comes close to a solution, but it eats too much space. – Serge Stroobandt Apr 23 '13 at 12:25