码迷,mamicode.com
首页 > Windows程序 > 详细

c# bitmap和new bitmap(bitmap)

时间:2019-01-10 14:27:40      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:palette   ret   sha   splay   width   spl   csharp   turn   arp   

问题情境:

  给picturebox赋image属性,我用一下代码,出错:

Bitmap theBitmap = convertCameraData.display(rawDataArray, height, width, rawImageArray, rgbPalette_256, backgroundTemperature);
            if (theBitmap == null) { return; }
            form_Main.pictureBox1.Image = theBitmap;

 困境辨析:

  把bitmap赋给pictureBox1.Image不正确,应转为image再进行赋值。

Bitmap theBitmap = convertCameraData.display(rawDataArray, height, width, rawImageArray, rgbPalette_256, backgroundTemperature);
            if (theBitmap == null) { return; }
            form_Main.pictureBox1.Image = new Bitmap(theBitmap);

 

c# bitmap和new bitmap(bitmap)

标签:palette   ret   sha   splay   width   spl   csharp   turn   arp   

原文地址:https://www.cnblogs.com/gaara-zhang/p/10249660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!