Как я могу загрузить изображение в imageview на Android из службы отдыха на ядре asp.net.В ядре asp.net у меня есть контроллер MyController и метод:
[Route("api/[controller]")]
[ApiController]
public class MyController : ControllerBase
{
// GET api/values
[HttpGet]
public IActionResult Get(string type)
{
Byte[] b;
if(type == null)
{
return NotFound();
}
Image image = DrawText("My Example: " + type, new Font(FontFamily.GenericSansSerif, 15), Color.DarkBlue, Color.Cornsilk);
b = ImageToByteArray(image); //Simulate loading images from the database
return File(b, "image/jpeg");
}
public byte[] ImageToByteArray(System.Drawing.Image imageIn)
{
MemoryStream ms = new MemoryStream();
imageIn.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
return ms.ToArray();
}
}