From 2682f2013fe36047544b5beeb70f3b09ccc4705e 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: 09be554162b819fcbe2652ed79ba2022cdb3e528 Former-commit-id: 14b2f4eee4cd31bedfc16aec8ec00eb3dfbefcb8 Former-commit-id: e733e616035e21b5ff4cdb2b22a184391716ad3f --- 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 ebc5e7007..e9889492f 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 168fa0a54..3c06a1a13 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 e3a21dbc4..073008989 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 bee88dcec..9525ac0f8 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 { ///