バイト配列を画像に変換しようとしていますが、ここに私のコードがあります:
Public img As BitmapImage
Public bytes As Byte()
Sub convert()
Using ms As New MemoryStream(bytes, 0, bytes.Length)
ms.Write(bytes, 0, bytes.Length)
'Dim bitmg As New BitmapImage
'bitmg.SetSource(ms)
img.SetSource(ms)
End Using
End Sub
しかし、私がアプリケーションを実行しているとき、私はこのエラーを受け取ります: Null reference was unhandled on the last line
img.SetSource(ms)
何か案は ?ありがとうございました