Generally I include images in my latex document by the command
\includegraphics[scale=0.5]{image.png}
However, after doing pdflatex the image quality is always very poor in the resulting pdf file. I think it is probably due to the scaling I do. I have also tried pdf, ps and eps images but they also suffer the same problems. I generally use gnuplot or matplotlib to generate the graphs.
What format should I store the images so that when I scale them to be put in the latex document, they maitain their quality? What are the macros that I should use? As of now I only use
\usepackage{graphics}
graphicspackage, orgraphicx? You should be using the latter. – Jake Jul 18 '12 at 15:00graphicspackage but yes in the past I have also used thegraphicxpackage but without any change in quality – lovespeed Jul 18 '12 at 15:02pdflatex. – kiss my armpit Jul 18 '12 at 15:03graphicxpackage does not alter the included images in any way, even when scaling them, regardless of the format. This is most likely a viewer issue. Have you tried printing your document and checked the quality of the output. – Jake Jul 18 '12 at 15:05plt.savefig("image.pdf")in matplotlib andset term pdfandset output "image.pdf"in gnuplot – lovespeed Jul 19 '12 at 12:50