Browse Source

Clean up file headers

Former-commit-id: 09be554162b819fcbe2652ed79ba2022cdb3e528
Former-commit-id: 14b2f4eee4cd31bedfc16aec8ec00eb3dfbefcb8
Former-commit-id: e733e616035e21b5ff4cdb2b22a184391716ad3f
af/merge-core
James Jackson-South 10 years ago
parent
commit
0ca0fadde8
  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