标签: c# bitmap
我想将那个byte []保存到Bitmap中,但是它将parameter is not valid丢到new Bitmap(ms)上,为什么呢?它有什么要求?
parameter is not valid
new Bitmap(ms)
var bytes = new byte[] { 0x01, 0x02, 1 }; Bitmap bmp; using (var ms = new MemoryStream(bytes)) { bmp = new Bitmap(ms); bmp.Save(@"C:\bit.bmp"); }