我正在创建一个包含任意值的字节数组,并希望将其转换为 BitmapImage。
bi = new BitmapImage();
using (MemoryStream stream = new MemoryStream(data))
{
try
{
bi.BeginInit();
bi.CacheOption = BitmapCacheOption.OnLoad;
bi.StreamSource = stream;
bi.DecodePixelWidth = width;
bi.EndInit();
}
catch (Exception ex)
{
return null;
}
}
这段代码一直给我一个 NotSupportedException。如何从任何字节数组创建 BitmapSource?