I'm creating an MVC 4 app that includes the ability for users to upload images. I then display some of those images in another view. I allow the user to upload images with a maximum size of 10MB. I then use WebImage (System.Web.Helpers)
to resize to image 800 x ?, keeping the same aspect ratio, and then save it to my DB.
When I display these images in my view, they are all shapes and sizes because of the way they were originally taken, despite my resizing to 800 x ?. Is there a way I can display these pictures so they appear to all have the same width and height, without some of the images appearing grossly distorted?