1

我需要一些帮助将图像转换为 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;

我真的非常渴望帮助,因为这是我的主要项目。提前致谢!

4

1 回答 1

0

代码工作正常,只是它需要一个EventHandler。我曾使用Button_Click 侦听器来运行代码,它运行良好!

于 2013-07-25T03:50:44.930 回答