Perhaps this will work for you? Not sure if I read correctly what you were trying to do.
string myFile = "image1.png"; //assuming this is a path to your image. Image newImage = Image.FromFile(myFile); pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; pictureBox1.Image = newImage;
~Christine