Possible Duplicates:
Included PNG appears blurry in PDF
My pixel perfect picture gets blurry when compiled in LaTeX
I often need to use pixel graphics in LaTeX files (mostly screenshots), but I don’t really know what’s the best way to do it. Let me illustrate the problem I am having with the following minimum working example:
\documentclass{scrartcl}
\usepackage{graphicx}
\begin{document}
\includegraphics{scrot.png}
\end{document}
You can get scrot.png from http://t.zekjur.net/tex/scrot.png (it’s just a screenshot I made with the tool scrot. Any pixel graphic will do).
After using pdflatex mwe.tex I get mwe.pdf. The picture in it looks good (sharp, not scaled but at its native size) in Xpdf when I chose 100% zoom level. However, when I open the same file with evince instead of Xpdf, I cannot get the picture to look good -- no matter which zoom level I choose.
This is what it looks like in Xpdf:

and this is what it looks like in evince:

What is the reason for this problem and what is a better way (aside from using vector graphics, obviously)?