简体   繁体   中英

Convert the image in a PictureBox into a bitmap

I have used the following code to convert the image in a PictureBox into a Bitmap:

bmp = (Bitmap)pictureBox2.Image;

But I am getting the result as bmp = null . Can anyone tell me how I do this?

As per my understanding your have not assigned PictureBox's Image property, so that it is returning null on type cast.

PictureBox property automatically convert the Image format and if you see the tooltip on Image property, it will Show System.Drawing.Bitmap. Check your image property is correctly assigned.

Check this, it is working at my side.

private void button1_Click(object sender, EventArgs e)
{
    var bmp = (Bitmap)pictureBox1.Image;
}

private void TestForm12_Load(object sender, EventArgs e)
{
    pictureBox1.Image = Image.FromFile("c:\\url.gif");
}

/// Using BitMap Class

 Bitmap bmp = new Bitmap(pictureBox2.Image);

You can directly cast pictureBox2.Image to Bitmap as you are doing and also using the Bitmap class to convert to Bitmap class object.

Ref: Bitmap Constructor (Image) .

You can find more options here with the Bitmap Class

Bitmap bitmap = new Bitmap(pictureBox2.Image)

http://msdn.microsoft.com/en-us/library/ts25csc8.aspx

我想你在找这个:

Bitmap bmp = new Bitmap(pictureBox2.Image)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM