C# PictureBox怎么显示BitMapSource数据图片??????

 我来答
942129263
推荐于2018-02-28 · TA获得超过364个赞
知道小有建树答主
回答量:262
采纳率:0%
帮助的人:145万
展开全部
不知道BitMapSource是什么类型,只能给一些可能有帮助的提示
Bitmap bm = new Bitmap();
pictureBox1.Image = Image.FromHbitmap(bm.GetHbitmap());
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bhxycolor
2014-02-20
知道答主
回答量:19
采纳率:0%
帮助的人:5万
展开全部
// Define parameters used to create the BitmapSource.
PixelFormat pf = PixelFormats.Bgr32;
int width = 200;
int height = 200;
int rawStride = (width * pf.BitsPerPixel + 7) / 8;
byte[] rawImage = new byte[rawStride * height];

// Initialize the image with data.
Random value = new Random();
value.NextBytes(rawImage);

// Create a BitmapSource.
BitmapSource bitmap = BitmapSource.Create(width, height,
96, 96, pf, null,
rawImage, rawStride);

// Create an image element;
Image myImage = new Image();
myImage.Width = 200;
// Set image source.
myImage.Source = bitmap;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-02-20
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式