我正在尝试将图像保存到 aMemoryStream
以获取字节数组。
using (MemoryStream ms = new MemoryStream()){
// Convert Image to byte[]
ms.Seek(0, SeekOrigin.Begin);
img.Save(ms, ImageFormat.RawFormat);
byte[] imageBytes = ms.ToArray();
return imageByates;
}
这段代码适用于具有以下属性的图像
Flags 77840
FrameDimensionList System.Guid[]
Heigth 2048
HorizontalResolution 72
Palette System.Drawing.Imaging.ColorPalette
PhysicalDimension {Width=1322, Height=2048}
Pixelformat Format24bppRgb
PropertyIDList 0 20625
PropertyIDList 1 20624
PropertyIDList 2 34675
PropertyItems System.Drawing.Imaging.PropertyItem
PropertyItems 0 System.Drawing.Imaging.PropertyItem
PropertyItems 1 System.Drawing.Imaging.PropertyItem
PropertyItems 2 System.Drawing.Imaging.PropertyItem
RawFormat [ImageFormat: b96b3cae-0728-11d3-9d7b-0000f81ef32e]
RawFormat height 2048 width 1322
Tag
VerticalResolution 72
Width 1322
对于具有以下属性的另一个图像,我得到了臭名昭著的 gdi+ 中发生的通用错误
Flags 73744
FrameDimensionList System.Guid[]
Heigth 336
HorizontalResolution 96
Palette System.Drawing.Imaging.ColorPalette
PhysicalDimension {Width=251, Height=336}
Pixelformat Format24bppRgb
RawFormat [ImageFormat: b96b3cae-0728-11d3-9d7b-0000f81ef32e]
RawFormat height 336 width 251
Tag
VerticalResolution 96
Width 251
不同之处在于前者是我从文件系统加载的 jpeg 图像(使用Image.FromFile
)。后者是我通过 SDK 收到的图像,它可能会将其从存储在网络中的数据库中取出。图片都是System.Drawing.Image
这里可能是什么问题?