Exemplo n.º 1
0
 public FileResult GetImage(string base64String)
 {
     if (string.IsNullOrEmpty(base64String))
     {
         return(null);
     }
     //return the image to View
     return(new FileContentResult(StreamUtil.Base64ToBytes(base64String), "image/jpeg"));
 }