Simple .NET utility to scale and crop an image to create a preview/thumbnail.
This project provides a single class, CodersBlock.ImageFix.ImageFixer, which provides a single static function, ResizeImage(). This function takes the following parameters:
byte[] imageFile- The image as a byte arrayint newWidth- Width to scale and/or crop the image toint newHeight- Height to scale and/or crop the image tolong quality- The quality of the resulting JPG (100 is the max)
ResizeImage() returns a byte array for a new resized image that preserves the original image's aspect ratio.
Feel free to incorporate the source code, or just build and use the DLL.