Does anyone know how to create a BitmapImage from an Image? Here is the code that I\'m working with:
MemoryStream memStream = new MemoryStream(bytes); Image
From this post
public BitmapImage ImageFromBuffer(Byte[] bytes) { MemoryStream stream = new MemoryStream(bytes); BitmapImage image = new BitmapImage(); image.BeginInit(); image.StreamSource = stream; image.EndInit(); return image; }