Possible Duplicate:
Included PNG appears blurry in PDF
I have a PNG image with a pretty good quality, but when I import this in beamer it has lost its quality, even if I maintain the 1.0 as scale factor. How can I avoid it? Is vectorial image the one solution? I grab this image from a website. I use this code to import image:
\begin{figure}[here]
\begin{center}
\includegraphics[scale=1.0]{img/dp2}
\end{center}
\end{figure}
I'm using pdflatex.
PS: I have no type of knowledge about graphic and photoediting.

img/dp2.jpg?\includegraphicstries a list of file extensions and by default JPG comes before PNG. Try it with the.pngadded. Also, how are you compiling the document? Usingpdflatexorlatexetc.? – Martin Scharrer May 08 '12 at 08:29[here]is wrong, it should be[h]. See How to influence the position of float environments like figure and table in LaTeX? for more details about figure placement. Also see Should I use center or centering for figures and tables? to learn why you should use\centeringinstead of{center}. – Martin Scharrer May 08 '12 at 08:31pdflatexthere should be no problem. Please check the.logfile if really the wanted image is used and not a different one. As I said, also try{img/dp2.png}. – Martin Scharrer May 08 '12 at 08:39scale=0.75. In the document it then should appear properly. – Thorsten Donig May 08 '12 at 09:00