'画像ファイルを Byte 配列にする方法 Dim bin As Byte() = System.IO.File.ReadAllBytes("C:\temp\test.bmp") 'Byte 配列な画像を PictureBox に表示する方法 Dim img As Image = Image.FromStream(New System.IO.MemoryStream(bin)) PictureBox1.Image = img