标签: c# .net image image-processing
我有byte[].它包含带有所有标题信息的图像(jpeg或位图)的数据。
byte[].
如何从byte[]创建位图,并获取该位图的句柄?
byte[]
重要的是,我需要获得该位图的句柄。我需要获得的句柄是IntPtr类型。
IntPtr
答案 0 :(得分:6)
new Bitmap( new MemoryStream(bytes)).GetHbitmap()