[RESOLVED] Save PictureBox Bitmap
Hi,
I have 2 problems and wondering if anyone can help.
1. I need to save an image that is in a PictureBox which is made up from drawing lines on it?
2. How could i split this image up into smaller parts and save as a series of images?
Many Thanks
Mathy
Re: Save PictureBox Bitmap
Possible solutions
1. SavePicture Picture1.Image, path\filename
2. Use a second picturebox (borderless & AutoRedaw=True) sized to the size you want to save in
:: Use Picture2.PaintPicture to draw the portion from Picture1
:: Save the Picture2 as noted in #1 above
:: use CLS on the 2nd picturebox & repeat for the next section from Picture1
Re: Save PictureBox Bitmap
Thanks
Neven new SavePicture command existed.
Mathy