Programming
Returning Image Files From an Azure Function
Azure functions (at least HTTP triggered ones) are essentially stateless APIs and so should be able to return files as well as other output objects such as JSON. This is indeed the case and can be done by returning a FileContentResult as in the below code which returns a QR Read more…