[Tex/LaTex] Change image size

graphics

I'm trying to change the image size (make it look smaller than the original).

I tried with the next code but the image still shows at its original size.

\begin{figure}[h!]
\centering
\includegraphics[width=50mm]{method.eps}
\caption{Overall process}
\label{fig:method}
\end{figure}

I am using TeXnic Center with profile latex>ps>pdf

Update:

It seems to work now but I do not why

I first built the project with the profile latex => ps and then I built it with latex=>ps=>pdf

Best Answer

Use the scale=0.5 option in the \includegraphics command to shrink the image to 50% of its original size. That is, \includegraphics[width=50mm,scale=0.5]{method.eps}. You can use a different percentage if needed.