[Tex/LaTex] Why does this image appear so small

graphics

I am trying to insert an image, scaling it to the text size and rotating it, using the following example:

\documentclass{memoir}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textwidth,height=\textheight,keepaspectratio,angle=90]{bhuta1.JPG}
\end{figure}
\end{document}

The image is here. As can be seen below the image appears very small only, why is that so, and how do I fix it?

Output

Best Answer

Your image makes it look smaller than I expect. and smaller than I get with pdflatex, but you have the arguments the wrong way round, they are read left to right so you need

enter image description here

\documentclass{memoir}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textheight,height=\textwidth,keepaspectratio,angle=90]{bhuta1.JPG}
\end{figure}
\end{document}

with the width based on text height as you scale before rotating.

Related Question