[Tex/LaTex] Image quality using PDFLaTeX

epstopdfgraphicspdfpdftexps2pdf

I've got some PNG images within my LaTeX document. The quality of the image files is sufficient and the result using LaTeX and viewing the resulting DVI file is quite what I expect – looks good.

But I would need such quality of the images in my PDF files as well. But unfortunately when using PDFLaTeX the images are surprisingly worse quality in the resulting PDF file.

How can the quality for the resulting PDF file be improved?

I think there's happening some kind of rasterization which makes the images showing up in bad quality.

(I tried using dvi2pdf or ps2pdf but the quality of the final PDF was the same. Additionally I would like to have a PDF ToC and the hyperref-pdf features when using PDFLaTeX)

Searching the web I found the following but I'm not quite sure if this helps and were to set the mentioned parameters on my *buntu
http://www.mackichan.com/index.html?techtalk/581.htm~mainFrame

Best Answer

I'd recommend using vector-based graphics for your images. The best format to save images in is .pdf

With programs like Inkscape, you can draw as you would in MS Paint (and do much more), and because the images are vector-based instead of pixel-based, their quality should be preserved when converting to PDF in any way.

You can also try using the TikZ to program figures directly into your LaTeX file; although it takes longer, the output will never vary during compilations and conversions.