[Tex/LaTex] Beamer image positioning

beamergraphicspositioning

I am trying to place two images side-by-side in a beamer document. However, when I compile the document, the image in the right column is forced too low on the page. I am using the [htp] options but no variation on these options moves the image. Is there something I am missing?

\begin{frame}{Frame}
    \begin{columns}
    \begin{column}{0.5\textwidth}
        \includegraphics[htb, scale=0.3]{image1}
    \end{column}
    \begin{column}{0.5\textwidth}
        \includegraphics[htb, scale=0.3]{image2}
        \vfill
    \end{column}
    \end{columns}
\end{frame}

Best Answer

Maybe depends on the images, their size or something else, but somethings like this works fine for me:

\begin{frame}{Frame}
    \begin{columns}
        \begin{column}{0.5\textwidth}
            \includegraphics[width=1\textwidth]{image1}
        \end{column}
        \begin{column}{0.5\textwidth}
            \includegraphics[width=1\textwidth]{image2}
        \end{column}
    \end{columns}
\end{frame}

I've learned here that it's best to use width=bla instead of scale

Related Question