I want to embed an image within a tikzpicture environment. I tried the following,
\begin{tikzpicture}[]
\pgftext{\includegraphics[width=150pt]{pic1.png}} at (0pt,0pt);
\pgftext{\includegraphics[width=150pt]{pic2.png}} at (100pt,0);
\end{tikzpicture}
but both pictures are placed at upper-left corner of image, at the same position. I tried including them inside nodes as well, to no avail.
What am I doing wrong?

\node (myfirstpic) at (0,0) {\includegraphics{pic1.png}};– jub0bs May 19 '13 at 15:02\pgftextis not a TikZ command. The\nodething from @Jubobs should work.\pgftext[at={\pgfpoint{0pt}{0pt}}]{…}and\pgftext[x=100pt, y=0pt]{…}are possible\pgftextsolutions. (Theat …stuff you wrote is just ignored by TikZ as usual.) – Qrrbrbirlbel May 19 '13 at 15:07