Browse Source

Clean up file headers

Former-commit-id: e157be949169ea3db7a4bd34ca568044fe74f753
Former-commit-id: 05e02799c27fd0a4050756c40f8a3138d20b2787
Former-commit-id: adcf0727bf4c5cf711d9d686f41bf25fa2118dcf
pull/17/head
James Jackson-South 11 years ago
parent
commit
f54c05cb6e
  1. 12
      src/ImageProcessor/Formats/Bmp/BmpCompression.cs
  2. 11
      src/ImageProcessor/Formats/Bmp/BmpDecoder.cs
  3. 12
      src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs
  4. 15
      src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs

12
src/ImageProcessor/Formats/Bmp/BmpCompression.cs

@ -1,13 +1,7 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpCompression.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// <copyright file="BmpCompression.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>
// Defines how the compression type of the image data
// in the bitmap file.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Formats
{

11
src/ImageProcessor/Formats/Bmp/BmpDecoder.cs

@ -1,12 +1,7 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// <copyright file="BmpDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>
// Image decoder for generating an image out of a Windows bitmap stream.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Formats
{

12
src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs

@ -1,13 +1,7 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpFileHeader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// <copyright file="BmpFileHeader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>
// Stores general information about the Bitmap file.
// <see href="https://en.wikipedia.org/wiki/BMP_file_format" />
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Formats
{

15
src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs

@ -1,16 +1,7 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpInfoHeader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// <copyright file="BmpInfoHeader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>
// This block of bytes tells the application detailed information
// about the image, which will be used to display the image on
// the screen.
// <see href="https://en.wikipedia.org/wiki/BMP_file_format" />
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Formats
{
/// <summary>

Loading…
Cancel
Save