I\'m working on a personal project to manage users of my club, it\'s hosted on the free Azure package (for now at least), partly as an experiment to try out Azure. Part of c
You can also upload resized versions to azure. So, you first upload the original image as a blob, say with the name /original/xxx.jpg; then you create a resize of the image and upload that to azure with the name say /thumbnail/xxx.jpg. If you want to create the resized versions on the fly or on a separate thread, you may need to temporarily save the original to disk.