Possible Duplicate:
Tikz changes included graphics
I include my pdf vector plots (created with matplotlib) in nodes belonging to a TikZ matrix for positioning (e.g. see TikZ: Image Matrix - shifting connected paths).
If i include an image (the standard latex way) the output looks identical to the original vector graphic within my pdf viewer. Yet, if i include the image into a TikZ node the output is altered. The linewidths of the vector graphic shrink compared to the original.
See the following screenshot showing the same figure included two different ways. How can i circumvent the odd TikZ alteration?

\documentclass[a4paper]{scrartcl}
\usepackage{tikz}
\begin{document}
\begin{figure}[ht]
\begin{tikzpicture}
\matrix[column sep=0.0mm,row sep=0.0mm,inner sep=0cm,ampersand replacement=\&]%
{%
\node(img1){\includegraphics{prof.pdf}}; \&
\node(img2){}; \\
};
\end{tikzpicture}
\caption{Tikz inclusion}
\end{figure}
\begin{figure}[ht]
\includegraphics{prof.pdf}
\caption{Standard Inclusion}
\end{figure}
\end{document}
line width=1.0ptoption to the first node. – percusse Jan 13 '13 at 22:03