我需要一些帮助才能将图像转换为base64string。我在stackoverflow中使用了类似问题的解决方案,但发生了错误。
使用的解决方案: convert image into base64 in wp8
问题在于Image的Source我以前设置为writeablebitmap但结果是null异常。
这是我的图片来源:
image123.Source = new BitmapImage(new Uri("/correct1.jpg", UriKind.Relative));
此行发生错误:
WriteableBitmap wbitmp = new WriteableBitmap((BitmapImage)image123.Source);
错误:
An exception of type 'System.NullReferenceException' occurred in System.Windows.ni.dll but was not handled in user code
我现有的代码作为参考:
image123.Source = new BitmapImage(new Uri("/correct1.jpg", UriKind.Relative));
byte[] bytearray = null;
using (MemoryStream ms = new MemoryStream())
{
if (image123.Source != null)
{
WriteableBitmap wbitmp = new WriteableBitmap((BitmapImage)image123.Source);
wbitmp.SaveJpeg(ms, 46, 38, 0, 100);
bytearray = ms.ToArray();
}
}
str = Convert.ToBase64String(bytearray);
binarytxt.Text = str;
我非常渴望得到帮助,因为这是我的主要项目。提前谢谢!
答案 0 :(得分:0)
代码正常运行,只需要 EventHandler 。我曾使用 Button_Click监听器来运行代码,它运行良好!