我正在尝试从嵌入式资源中检索图像,并以RAW DATA格式显示它(即 - >垃圾文本数据)。
基本上,我正在尝试用我所尝试的一切。 有人能告诉我如何正确地做到这一点吗?
答案 0 :(得分:0)
您可以使用以下msdn ref
System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream(fileName)
这将为您提供一个Stream,然后您可以使用code cite转换为几乎是原始数据的字节数组。
private Function GetStreamAsByteArray(ByVal stream As System.IO.Stream) As Byte()
Dim streamLength As Integer = Convert.ToInt32(stream.Length)
Dim fileData As Byte() = New Byte(streamLength) {}
' Read the file into a byte array
stream.Read(fileData, 0, streamLength)
stream.Close()
Return fileData
End Function