From 12554abf89126fc99c36dcbe63aff7684a42ef0a Mon Sep 17 00:00:00 2001 From: Jason Nelson Date: Mon, 16 Apr 2018 16:39:00 -0700 Subject: [PATCH] Minor cleanup --- src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs | 28 +++++++------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs b/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs index f4a009dd2..f1e93886b 100644 --- a/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs +++ b/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs @@ -163,18 +163,7 @@ namespace SixLabors.ImageSharp.Formats.Bmp [MethodImpl(MethodImplOptions.AggressiveInlining)] private static int Invert(int y, int height, bool inverted) { - int row; - - if (!inverted) - { - row = height - y - 1; - } - else - { - row = y; - } - - return row; + return (!inverted) ? height - y - 1 : y; } /// @@ -348,7 +337,7 @@ namespace SixLabors.ImageSharp.Formats.Bmp using (IManagedByteBuffer row = this.memoryManager.AllocateCleanManagedByteBuffer(arrayWidth + padding)) { - var color = default(TPixel); + TPixel color = default; var rgba = new Rgba32(0, 0, 0, 255); Span rowSpan = row.Span; @@ -478,14 +467,15 @@ namespace SixLabors.ImageSharp.Formats.Bmp /// private void ReadInfoHeader() { - byte[] buffer = new byte[BmpInfoHeader.MaxHeaderSize]; // TODO: Stackalloc + byte[] buffer = new byte[BmpInfoHeader.MaxHeaderSize]; // TODO: stackalloc // read header size this.stream.Read(buffer, 0, BmpInfoHeader.HeaderSizeSize); + int headerSize = BitConverter.ToInt32(buffer, 0); if (headerSize < BmpInfoHeader.CoreSize) { - throw new NotSupportedException($"This kind of bitmap files (header size $headerSize) is not supported."); + throw new NotSupportedException($"ImageSharp does not support this BMP file. HeaderSize: {headerSize}."); } int skipAmount = 0; @@ -522,11 +512,11 @@ namespace SixLabors.ImageSharp.Formats.Bmp /// private void ReadFileHeader() { - byte[] data = new byte[BmpFileHeader.Size]; // TODO: Stackalloc + byte[] buffer = new byte[BmpFileHeader.Size]; // TODO: stackalloc - this.stream.Read(data, 0, BmpFileHeader.Size); + this.stream.Read(buffer, 0, BmpFileHeader.Size); - this.fileHeader = BmpFileHeader.Parse(data); + this.fileHeader = BmpFileHeader.Parse(buffer); } /// @@ -587,7 +577,7 @@ namespace SixLabors.ImageSharp.Formats.Bmp if (this.infoHeader.Width > int.MaxValue || this.infoHeader.Height > int.MaxValue) { throw new ArgumentOutOfRangeException( - $"The input bitmap '{this.infoHeader.Width}x{this.infoHeader.Height}' is " + $"The input bmp '{this.infoHeader.Width}x{this.infoHeader.Height}' is " + $"bigger then the max allowed size '{int.MaxValue}x{int.MaxValue}'"); } }