I have a problem with the bounding box of my graphics.
Example 1 below, where I only include a PNG image works fine.
Example 2 below, where I also have \usepackage[dvips]{color} in order to include a PS file, does not work - the PNG image is blown up!
Code example 1
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htbp]
\includegraphics[scale=0.7]{irg.png}
\end{figure}
\end{document}
Code example 2
\documentclass{article}
\usepackage{graphicx}
\usepackage[dvips]{color}
\begin{document}
\begin{figure}[htbp]
\includegraphics[scale=0.7]{irg.png}
\end{figure}
\begin{figure}[htbp]
\includegraphics{irg2.ps}
\end{figure}
\end{document}
xcolorpackage instead ofcolor. It should support everything whatcolordoes and more. – Martin Scharrer May 31 '11 at 11:53