Load bitmapImage from base64String
问题 How can I load a bitmapImage from base64String in windows 8 ? I tried this but I am not successful. It used to work on windows phone. What is different? Looks like I have to use the function setsourceasync. When I use that, then I am required to pass the parameter as IRandomMemory which I am unable to do. How to do this? public static BitmapImage Base64ToImage(string base64String) { var bitmapImage = new BitmapImage(); try { if (!String.IsNullOrEmpty(base64String)) { var imageBytes = Convert