Check out example codes for "c# web api return image file". It will help you in understanding the concepts better.
Code Example 1
[HttpGet]
public IActionResult Get()
{
Byte[] b = System.IO.File.ReadAllBytes(@"E:\\Test.jpg"); // You can use your own method over here.
return File(b, "image/jpeg");
}
Learn ReactJs, React Native from akashmittal.com