Saving image created with System.Drawing.Graphics [resolved]
I am currently combining 2 images with each other with an System.Drawing.Graphics object.... but once i have done that i want to save the image but i cant seem to get an image from the .image or .backgroundimage property :s
this is my code
VB Code:
Dim g As System.Drawing.Graphics = PictureBox3.CreateGraphics
g.DrawImage(PictureBox2.Image, 0, 0)
g.DrawImage(PictureBox1.Image, 0, 0)
g.Save()
g.Dispose()
PictureBox4.Image = PictureBox3.Image ' nothing happens here
putting it on another image is just a test to see if it worked.. ofcourse i know that i should save through the bitmap object
any help would be nice :blush: :wave: