public class ImageToBytesUtils { /// /// Image Convert to Byte[] /// /// <returns>byte[]</returns> public static byte[] ImageToBytes() { BitmapImage bmp = new BitmapImage(); bmp.UriSource = new Uri("/Images/Search/GenericContact.png", UriKind.Relative); Image image = new ...