Results 1 to 4 of 4

Thread: [RESOLVED] Picturebox ??

  1. #1

    Thread Starter
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Resolved [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

    Parksie

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Picturebox ??

    There is a sample here.

  3. #3
    PowerPoster jcis's Avatar
    Join Date
    Jan 2003
    Location
    Argentina
    Posts
    4,430

    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);

  4. #4

    Thread Starter
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Resolved Re: Picturebox ??

    Thankyou gentlemen.

    Much appreciated.

    Parksie

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width