Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

how to Convert image to base64 in asp.net

Tags: convert
Use below code to Convert image to base 64.

 public string ConvertImageToBase64(string imgSrc)
        {
            try
            {
                var webClient = new WebClient();
                var imageBytes = webClient.DownloadData(imgSrc);
                return "data:image/png;base64," + Convert.ToBase64String(imageBytes);
            }
            catch
            {
                return string.Empty;
            }
        }





This post first appeared on Dot Net Tutorial For Beginners With Examples, please read the originial post: here

Share the post

how to Convert image to base64 in asp.net

×

Subscribe to Dot Net Tutorial For Beginners With Examples

Get updates delivered right to your inbox!

Thank you for your subscription

×