I'm not sure what's the difference between tikzpicture and pgfpicture.
I would like to make the following MWE within a pgfpicture:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (1,2) -- (3,4) -- (5,8);
\draw (6,6) circle (3);
\draw (8,8) .. controls (5,9) .. (1,1);
\end{tikzpicture}
\end{document}