BlogEngine.Core.FileSystem.Image.ResizeImageThumbnail C# (CSharp) Method

ResizeImageThumbnail() public static method

public static ResizeImageThumbnail ( int MaxSize, byte originalContents ) : byte[]
MaxSize int
originalContents byte
return byte[]
        public static byte[] ResizeImageThumbnail(int MaxSize, byte[] originalContents)
        {
            var bmp = ArrayToBmp(originalContents);
            bmp = (Bitmap)resizeImage((System.Drawing.Image)bmp, new Size(MaxSize, MaxSize));
            originalContents = BmpToArray(bmp);
            bmp.Dispose();
            return originalContents;
        }