Check out example codes for "c# byte array to bitmap". It will help you in understanding the concepts better.
Code Example 1
Bitmap bmp;
using (var ms = new MemoryStream(imageData))
{
bmp = new Bitmap(ms);
}
Learn ReactJs, React Native from akashmittal.com