1
我需要一些幫助將圖像轉換爲base64string。我曾使用過類似問題的解決方案,但出現了一個錯誤。使用將圖像轉換爲Base64String
解決方案: convert image into base64 in wp8
的問題在於對圖片的來源我曾經設置爲WriteableBitmap的,但結果是空例外。
這是我的圖像源:
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;
我真的非常渴望幫忙,因爲這是我的主要項目。提前致謝!
我複製粘貼你的代碼,它工作正常,你確定'correct1.jpg'正確加載到圖像 –
@ sa_ddam213是我註釋了我的代碼期望的圖像源,圖像加載到控制。在對Uri字符串進行多處更改後,我仍然遇到同樣的錯誤。順便說一下,我正在使用Windows Phone 8應用程序模板,只是爲了澄清。 –