I've read a link on this question before here, but it didn't solve my problem.
My images for some reason are stretched when I create my PDF file (i.e. way bigger than the original size!).
I'm using TeXnicCenter with this option "Latex => PS => PDF", and my images originally where of type .jpg and I've converted them to EPS using Photoshop.
When I open the images in PS viewer, the size is just perfect!
This is how I'm inserting the images in my .tex file
Code: Select all
\usepackage{graphicx}
...
\begin{figure}
\centering
\includegraphics[scale=0.75]{Image.eps}
\caption{bla}
\label{fig:bla}
\end{figure}
HannaH