用2.10版的tikz,不用载入其它library就可。但至少要导入graphics或graphicx宏包。
如果还不行,把错误信息写出来看看。
\documentclass{article}
\usepackage{tikz}
\usepackage{graphics}
\begin{document}
\begin{figure}
\begin{tikzpicture}[scale=1]
\node[anchor=south west,inner sep=0] at (0,0)
{\includegraphics[width=\textwidth]{test.png}};
\end{tikzpicture}
\caption{ xxx}
\end{figure}
\end{document}