Is [this](https://stackoverflow.com/questions/4161359/save-bitmapimage-to-file) an answer to your question?
– Iliar TurdushevApr 09 '20 at 16:01
1
You can save image to a stream, an array of bytes, and then what you do with the stream is up to you - saving to disk or converting to byte 64 string with `Convert.ToBase64String(bytes)`
– Martin StaufcikApr 09 '20 at 16:19
Does this link answer your question? https://stackoverflow.com/questions/19134062/encode-a-filestream-to-base64-with-c-sharp
– Martin StaufcikApr 09 '20 at 16:20
Tnx Martin, For helping in the right direction.This is indeed what I was looking for ```Convert.ToBase64String(bytes)```
– aeternusApr 10 '20 at 07:45