I'm looking to resize an image that is uploaded to my site, I'm using Azure Blob storage to store the physical files and I'm serving the files either via a public container or a private container (depending on the image).
I found the following tutorial the describes ImageResizer (http://benfoster.io/blog/high-performance-image-processing-with-image-resizer-and-azure). However, it is requesting for the container to be public. In my scenario I have multiple containers (public and private - blob). I place sensitive images in the private container, and I have my own api to download from the container if the user has access to view the image.
In this scenario can I use ImageResizer ?
Is it possible pre-save the images in various sizes as opposed to doing this in real time ?
Thanks