|
-
Feb 28th, 2006, 12:22 PM
#1
Thread Starter
Fanatic Member
[RESOLVED] Picturebox ??
I know this is going to sound daft but how can I save an image displayed in a picturebox ?
I have a third party twain control which displays a scanned image in a picturebox control but I want to save that image as something.
Last edited by Hack; Mar 1st, 2006 at 07:20 AM.
Reason: Added [RESOLVED] to thread title and green "resolved" checkmark
-
Feb 28th, 2006, 12:31 PM
#2
-
Feb 28th, 2006, 09:03 PM
#3
Re: Picturebox ??
Code:
//Save Jpeg
pictureBox1.Image.Save("C:\\MyImage.Jpg",System.Drawing.Imaging.ImageFormat.Jpeg);
//Save Bmp
pictureBox1.Image.Save("C:\\MyImage.Bmp",System.Drawing.Imaging.ImageFormat.Bmp);
//Save Gif
pictureBox1.Image.Save("C:\\MyImage.Gif",System.Drawing.Imaging.ImageFormat.Gif);
-
Mar 1st, 2006, 06:02 AM
#4
Thread Starter
Fanatic Member
Re: Picturebox ??
Thankyou gentlemen.
Much appreciated.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|