Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8228553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T16:29:47+00:00 2026-06-07T16:29:47+00:00

I have 1 Windows Form with 1 pictureBox, 1 textBox, and 3 buttons: LoadFromFile,

  • 0

I have 1 Windows Form with 1 pictureBox, 1 textBox, and 3 buttons: LoadFromFile, SaveToDB, and LoadFromDB.

Using LINQ to SQL connection in App.config and next code in the form:

private void btnLoadFromFile_Click(object sender, EventArgs e)
{
// open file dialog
OpenFileDialog open = new OpenFileDialog();
// image filters
open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp; *.png)|*.jpg; *.jpeg; *.gif; *.bmp; *.png";
if (open.ShowDialog() == DialogResult.OK)
{
// display image in picture box
picBox.Image = new Bitmap(open.FileName);
// image file path
textBox1.Text = open.FileName;
}
}

I could load Picture and its path to form.

Now I need to save the picture to an image type field named [BLOBData] in my table: tblBLOB (BLOBID, BLOBData). So what is the code to convert the picture to image type, and what is the code to then convert the image type to the picture to display it in the PictureBox control?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T16:29:50+00:00Added an answer on June 7, 2026 at 4:29 pm

    Store Byte Array as blob in DataBase. some useful conversion methods:

    public static byte[] ImageToByteArray(Image imageIn)
    {
        var ms = new MemoryStream();
        imageIn.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
        return ms.ToArray();
    }
    
    public static Image ByteArrayToImage(byte[] byteArrayIn)
    {
        var ms = new MemoryStream(byteArrayIn);
        Image returnImage = Image.FromStream(ms);
        return returnImage;
    }
    

    store to DB:

    OpenFileDialog open = new OpenFileDialog();
    if (open.ShowDialog() == DialogResult.OK)
    {
        // display image in picture box
        Image img = new Bitmap(open.FileName);
        picBox.Image = img;
        // Byte Array that can store as BLOB in DB
        byte[] blobData = ImageToByteArray(img);
    }
    

    and load from DB:

    picBox.Image = ByteArrayToImage(/* Byte Array of image from BLOB cell in DB */);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a pictureBox on a Windows Form. I do the following to load
I have a windows form app, and a class which is called Game. Let's
I have a Windows Form application. Version 1 of my app has been released
I have a Windows Form Application in Visual Studio 2008 - PictureBox.Refesh() method causes
I have created a label using the following code: public static System.Windows.Forms.PictureBox pc =
i have a PictureBox in my Windows Form application and i am in the
I wrote a windows application, and I have a PictureBox on my form. Now,
I a have a PictureBox with a picture in a Windows Form application in
I'm using VB 2008 express to create a windows form application. I have a
I'm using C# and I have windows form and web service... I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.