Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Thumbnails with Asp.net Mvc

Does anyone know of a way to display a thumbnail image from a byte array, or even better, a library that does this. Thanks

like image 866
Collin O'Connor Avatar asked Feb 16 '11 19:02

Collin O'Connor


People also ask

What is a thumbnail in graphics?

A thumbnail is a small image representation of a larger image, usually intended to make it easier and faster to look at or manage a group of larger images. Graphic designers and photographers typically use this term.

What CSS property is used to create thumbnails?

To create thumbnail image with CSS, use the border property.


1 Answers

With ASP.NET MVC 3 and WebMatrix we now have nice standard WebImage class which has among others GetImageFromRequest, Resize, Crop and AddTextWatermark methods.

like image 108
Alexander Prokofyev Avatar answered Sep 20 '22 22:09

Alexander Prokofyev