I receive a image/jpeg;base64 string from server. How can I convert this string to BitmapImage and set like Image.Source ?
string imgStr = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAAQABAAD .... ";
BitmapImage bmp = Base64StringToBitmap(imgStr);
myImage.Source = bmp;
Thanks in advance!