Example #1
0
 /// <summary>
 /// Loads the image from the byte array
 /// </summary>
 public async Task <BitmapImage> loadImage()
 {
     if (image != null && image.Count() > 0)
     {
         imageObj = await ImageTools.BytesToImage(this.image);
     }
     return(imageObj);
 }