You need a PrintPageEventArgs passed through the function and then do:
Code:
// Draw a picture
e.Graphics.DrawImage(Image.FromFile("C:\\pic.bmp"), e.Graphics.VisibleClipBounds);
After that you can use pens, brushes, drawlines and the whole thing on the image.