我需要一些帮助将图像转换为 base64string。我在stackoverflow中使用了类似问题的解决方案,但发生了错误。
使用的解决方案: 在wp8中将图片转换为base64
问题出在我用来设置为可写位图的图像源上,但结果是空异常。
这是我的图片来源:
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;
我真的非常渴望帮助,因为这是我的主要项目。提前致谢!