I'm currently developing an MVC 4 application that allows users to upload images. These uploaded images are then displayed in a different view. Users can upload images up to 10MB in size, which are then resized to 800 x ? pixels using the WebImage (System.Web.Helpers)
feature while maintaining the aspect ratio before being saved to the database.
However, when viewing these images in my app, they appear in various shapes and sizes due to their original dimensions, despite the resizing process. Is there a way to showcase all images with uniform width and height without compromising the image quality for some pictures?