Search code examples
c#stream

How to convert base64 value from a database to a stream with C#


I have some base64 stored in a database (that are actually images) that needs to be uploaded to a third party. I would like to upload them using memory rather than saving them as an image then posting it to a server. Does anyone here know how to convert base64 to a stream?

How can I change this code:

var fileInfo = new FileInfo(fullFilePath); var fileContent = new StreamContent(fileInfo.OpenRead());

to fill the StreamContent object with a base64 interpretation of an image file instead.

    private static StreamContent FileMultiPartBody(string fullFilePath)
    {
        var fileInfo = new FileInfo(fullFilePath);

        var fileContent = new StreamContent(fileInfo.OpenRead());

        // Manually wrap the string values in escaped quotes.
        fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data")
        {
            FileName = string.Format("\"{0}\"", fileInfo.Name),
            Name = "\"name\"",
        };
        fileContent.Headers.ContentType = new MediaTypeHeaderValue("image/jpeg");

        return fileContent;
    }

Solution

  • You'll want to do something like this, once you've gotten the string from the database:

    var bytes = Convert.FromBase64String(base64encodedstring);
    var contents = new StreamContent(new MemoryStream(bytes));
    // Whatever else needs to be done here.