I am posting pictures to Azure blob storage. As I am storing full resolution images, I want to maintain a separate collection(s) of thumbnails(or previews) of the images. Is it possible to write a script(or a hook) where when an image is uploaded to the blob storage, the thumbnail of the image is also automatically saved.
Please inform if there's a way to script this.
I don't want to do the resizing on the client side or on the server side. I am using SAS to enable the client to upload the images to blob storage directly. I can send the image to the Mobile Service(server) I am running where the image can be resized and uploaded to the blob storage. But I don't want to overload the server with these calls.