图像如何在内部存储在字节数组中?在 Visual Studio 中调试时,我可以看到 ASCII 代码(我猜)。但是请有人解释一下。
说,我们有一个存储在表中的图像(BLOB)。将该 BLOB 提取到代码(在 .net 中)中的数据表中,如下所示,
byte[] image = new image();
DataTable dt = new DataTable();
dt.Columns.Add("Image", typeof(byte[]));
\\Consider the BLOB from the DB is fetched into DataTable Image column.
image = dt[Row]["Image"];
现在,BLOB 如何在内部存储在 byte[] 图像中?
我在互联网上搜索过,但找不到任何东西。