How to retrieve Uploaded image from Azure using .net core web api and display the same image in Angular UI
I have a requirement where the user should be able to upload the images or screenshots to Azure (Similar to Jira where the users can upload the images). And that will be displayed in a portal. Clicking on any image that is uploaded, that image should be retrieved from Azure and displayed in UI.
I am using Angular 6 as frontend and .net core webapi to interact with Azure using Microsoft.WindowsAzure.Storage.
Have tried different approaches like
- Downloading it in server and displaying it
- Return the image as stream to UI
No luck and badly in need of a help. Thanks in advance.
Comments
Post a Comment