BB.UI.Web.MVC.Controllers.Utils.ImageDecoder.FixBase64ForImage C# (CSharp) Method

FixBase64ForImage() public static method

public static FixBase64ForImage ( string Image ) : string
Image string
return string
        public static string FixBase64ForImage(string Image)
        {
            System.Text.StringBuilder sbText = new System.Text.StringBuilder(Image, Image.Length);
            sbText.Replace("\r\n", string.Empty);
            sbText.Replace(" ", string.Empty);
            return sbText.ToString();
        }
    }