Regarding saving the file to a folder under your solution,
you can use the
Application.StartupPath property. This gives the folder of the executable file of the application. e.g.
pictureBox1.Image.Save(Application.StartupPath + "\\Image\\picture1.jpg");
PES