我有一个字节数组到BitmapImage转换器,并且工作正常。为了在我的应用程序中支持图块,我从图像创建了图块(调整大小和裁剪)并将其作为字节数组保存到我的数据库中。现在,如果要在转换器中显示此图块,则会引发异常:
找不到组件。 (来自HRESULT的异常:0x88982F50)
我创建图块的方法:
WriteableBitmap bmp = new WriteableBitmap(img);
int height = bmp.PixelHeight;
int newHeight = 0;
int width = bmp.PixelWidth;
int newWidth = 0;
// calculate new height and new width...
bmp = bmp.Resize(newWidth, newHeight, WriteableBitmapExtensions.Interpolation.Bilinear);
bmp = bmp.Crop(0, 0, 336, 336);
byte[] byteArray = bmp.ToByteArray();
item.Tile = byteArray;
我对实体内图块的属性:
private byte[] _tile;
[Column(DbType = "IMAGE")]
public byte[] Tile
{
get { return _tile; }
set { SetProperty(ref _tile, value); }
}
我的字节数组到BitmapImage转换器方法:
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value != null && value is byte[])
{
using (var stream = new MemoryStream((byte[])value))
{
stream.Seek(0, SeekOrigin.Begin);
BitmapImage image = new BitmapImage();
image.SetSource(stream);
return image;
}
}
return null;
}
我认为问题在于字节数组在数据库中另存为Base64编码的字符串,解码回字节数组时出错,但是我不知道如何解决。
最佳答案
我担心您创建字节数组的方法。您没有使用SaveJpeg扩展名是出于某些原因吗?我无法识别您正在执行的WritableBitmap.ToByteArray调用。尝试改用以下代码:
int quality = 90;
using (var ms = new System.IO.MemoryStream()) {
bmp.SaveJpeg(ms, bmp.PixelWidth, bmp.PixelHeight, 0, quality);
item.Tile = ms.ToArray();
}
关于c# - Windows Phone-字节数组到BitmapImage转换器引发异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18215157/