Answers for "c# base64 image to stream"

C#
0

base64 to image c#

public static Image LoadBase64(string base64)
{
	byte[] bytes = Convert.FromBase64String(base64);
    Image image;
    using (MemoryStream ms = new MemoryStream(bytes))
    {
        image = Image.FromStream(ms);
    }
    return image;
}
Posted by: Guest on November-13-2020
0

convert stream to base64 string c#

You can also encode bytes to Base64. How to get this from a stream see here: How to convert an Stream into a byte[] in C#?

Or I think it should be also possible to use the .ToString() method and encode this.
Posted by: Guest on March-12-2021

C# Answers by Framework

Browse Popular Code Answers by Language