From f54c05cb6ed71c2d94a826cee06de47cae9aaa9e Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Wed, 6 Jan 2016 10:34:04 +1100 Subject: [PATCH] Clean up file headers Former-commit-id: e157be949169ea3db7a4bd34ca568044fe74f753 Former-commit-id: 05e02799c27fd0a4050756c40f8a3138d20b2787 Former-commit-id: adcf0727bf4c5cf711d9d686f41bf25fa2118dcf --- src/ImageProcessor/Formats/Bmp/BmpCompression.cs | 12 +++--------- src/ImageProcessor/Formats/Bmp/BmpDecoder.cs | 11 +++-------- src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs | 12 +++--------- src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs | 15 +++------------ 4 files changed, 12 insertions(+), 38 deletions(-) diff --git a/src/ImageProcessor/Formats/Bmp/BmpCompression.cs b/src/ImageProcessor/Formats/Bmp/BmpCompression.cs index ebc5e70078..e9889492f1 100644 --- a/src/ImageProcessor/Formats/Bmp/BmpCompression.cs +++ b/src/ImageProcessor/Formats/Bmp/BmpCompression.cs @@ -1,13 +1,7 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) James Jackson-South and contributors. -// Licensed under the Apache License, Version 2.0. +// +// Copyright (c) James Jackson-South and contributors. +// Licensed under the Apache License, Version 2.0. // -// -// Defines how the compression type of the image data -// in the bitmap file. -// -// -------------------------------------------------------------------------------------------------------------------- namespace ImageProcessor.Formats { diff --git a/src/ImageProcessor/Formats/Bmp/BmpDecoder.cs b/src/ImageProcessor/Formats/Bmp/BmpDecoder.cs index 168fa0a54c..3c06a1a137 100644 --- a/src/ImageProcessor/Formats/Bmp/BmpDecoder.cs +++ b/src/ImageProcessor/Formats/Bmp/BmpDecoder.cs @@ -1,12 +1,7 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) James Jackson-South and contributors. -// Licensed under the Apache License, Version 2.0. +// +// Copyright (c) James Jackson-South and contributors. +// Licensed under the Apache License, Version 2.0. // -// -// Image decoder for generating an image out of a Windows bitmap stream. -// -// -------------------------------------------------------------------------------------------------------------------- namespace ImageProcessor.Formats { diff --git a/src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs b/src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs index e3a21dbc4b..073008989a 100644 --- a/src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs +++ b/src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs @@ -1,13 +1,7 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) James Jackson-South and contributors. -// Licensed under the Apache License, Version 2.0. +// +// Copyright (c) James Jackson-South and contributors. +// Licensed under the Apache License, Version 2.0. // -// -// Stores general information about the Bitmap file. -// -// -// -------------------------------------------------------------------------------------------------------------------- namespace ImageProcessor.Formats { diff --git a/src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs b/src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs index bee88dcecb..9525ac0f8c 100644 --- a/src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs +++ b/src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs @@ -1,16 +1,7 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) James Jackson-South and contributors. -// Licensed under the Apache License, Version 2.0. +// +// Copyright (c) James Jackson-South and contributors. +// Licensed under the Apache License, Version 2.0. // -// -// This block of bytes tells the application detailed information -// about the image, which will be used to display the image on -// the screen. -// -// -// -------------------------------------------------------------------------------------------------------------------- - namespace ImageProcessor.Formats { ///