Browse Source

Switch out List for ImmutableArray

Use my full name.


Former-commit-id: 329d5d6ae345d28b6c120966b77641cec4dce101
Former-commit-id: 121cd1a695ad5d3da170725385a3e555b5536798
Former-commit-id: c34c57087a21e44a404066329e2512d678eef567
af/merge-core
James Jackson-South 10 years ago
parent
commit
823ea46e0d
  1. 4
      src/ImageProcessor/Colors/Color.cs
  2. 4
      src/ImageProcessor/Colors/Formats/Bgra32.cs
  3. 4
      src/ImageProcessor/Colors/Formats/Cmyk.cs
  4. 4
      src/ImageProcessor/Colors/Formats/Hsv.cs
  5. 4
      src/ImageProcessor/Colors/Formats/YCbCr.cs
  6. 4
      src/ImageProcessor/Common/Exceptions/ImageFormatException.cs
  7. 4
      src/ImageProcessor/Common/Extensions/ByteExtensions.cs
  8. 4
      src/ImageProcessor/Common/Extensions/ComparableExtensions.cs
  9. 4
      src/ImageProcessor/Common/Extensions/EnumerableExtensions.cs
  10. 4
      src/ImageProcessor/Common/Helpers/Guard.cs
  11. 4
      src/ImageProcessor/Common/Helpers/ImageMaths.cs
  12. 4
      src/ImageProcessor/Filters/Alpha.cs
  13. 4
      src/ImageProcessor/Filters/Blend.cs
  14. 4
      src/ImageProcessor/Filters/Brightness.cs
  15. 4
      src/ImageProcessor/Filters/ColorMatrix/BlackWhite.cs
  16. 4
      src/ImageProcessor/Filters/ColorMatrix/ColorMatrixFilter.cs
  17. 4
      src/ImageProcessor/Filters/ColorMatrix/GreyscaleBt601.cs
  18. 4
      src/ImageProcessor/Filters/ColorMatrix/GreyscaleBt709.cs
  19. 4
      src/ImageProcessor/Filters/ColorMatrix/GreyscaleMode.cs
  20. 4
      src/ImageProcessor/Filters/ColorMatrix/IColorMatrixFilter.cs
  21. 4
      src/ImageProcessor/Filters/ColorMatrix/Kodachrome.cs
  22. 4
      src/ImageProcessor/Filters/ColorMatrix/Lomograph.cs
  23. 4
      src/ImageProcessor/Filters/ColorMatrix/Polaroid.cs
  24. 4
      src/ImageProcessor/Filters/ColorMatrix/Saturation.cs
  25. 4
      src/ImageProcessor/Filters/ColorMatrix/Sepia.cs
  26. 4
      src/ImageProcessor/Filters/Contrast.cs
  27. 4
      src/ImageProcessor/Filters/Convolution/Convolution2DFilter.cs
  28. 4
      src/ImageProcessor/Filters/Convolution/Convolution2PassFilter.cs
  29. 4
      src/ImageProcessor/Filters/Convolution/ConvolutionFilter.cs
  30. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/EdgeDetector2DFilter.cs
  31. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/EdgeDetectorFilter.cs
  32. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/IEdgeDetectorFilter.cs
  33. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Kayyali.cs
  34. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Kirsch.cs
  35. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Laplacian3X3.cs
  36. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Laplacian5X5.cs
  37. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/LaplacianOfGaussian.cs
  38. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Prewitt.cs
  39. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/RobertsCross.cs
  40. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Scharr.cs
  41. 4
      src/ImageProcessor/Filters/Convolution/EdgeDetection/Sobel.cs
  42. 4
      src/ImageProcessor/Filters/Convolution/GuassianBlur.cs
  43. 4
      src/ImageProcessor/Filters/Convolution/GuassianSharpen.cs
  44. 4
      src/ImageProcessor/Filters/ImageFilterExtensions.cs
  45. 4
      src/ImageProcessor/Filters/Invert.cs
  46. 4
      src/ImageProcessor/Formats/Bmp/BmpCompression.cs
  47. 4
      src/ImageProcessor/Formats/Bmp/BmpDecoder.cs
  48. 4
      src/ImageProcessor/Formats/Bmp/BmpDecoderCore.cs
  49. 4
      src/ImageProcessor/Formats/Bmp/BmpEncoder.cs
  50. 4
      src/ImageProcessor/Formats/Bmp/BmpFileHeader.cs
  51. 4
      src/ImageProcessor/Formats/Bmp/BmpFormat.cs
  52. 4
      src/ImageProcessor/Formats/Bmp/BmpInfoHeader.cs
  53. 4
      src/ImageProcessor/Formats/Gif/BitEncoder.cs
  54. 4
      src/ImageProcessor/Formats/Gif/DisposalMethod.cs
  55. 4
      src/ImageProcessor/Formats/Gif/GifConstants.cs
  56. 4
      src/ImageProcessor/Formats/Gif/GifDecoder.cs
  57. 4
      src/ImageProcessor/Formats/Gif/GifDecoderCore.cs
  58. 4
      src/ImageProcessor/Formats/Gif/GifEncoder.cs
  59. 4
      src/ImageProcessor/Formats/Gif/GifFormat.cs
  60. 4
      src/ImageProcessor/Formats/Gif/LzwDecoder.cs
  61. 4
      src/ImageProcessor/Formats/Gif/LzwEncoder.cs
  62. 4
      src/ImageProcessor/Formats/Gif/Quantizer/IQuantizer.cs
  63. 4
      src/ImageProcessor/Formats/Gif/Quantizer/OctreeQuantizer.cs
  64. 4
      src/ImageProcessor/Formats/Gif/Quantizer/QuantizedImage.cs
  65. 4
      src/ImageProcessor/Formats/Gif/Quantizer/Quantizer.cs
  66. 4
      src/ImageProcessor/Formats/Gif/Sections/GifGraphicsControlExtension.cs
  67. 4
      src/ImageProcessor/Formats/Gif/Sections/GifImageDescriptor.cs
  68. 4
      src/ImageProcessor/Formats/Gif/Sections/GifLogicalScreenDescriptor.cs
  69. 4
      src/ImageProcessor/Formats/IImageDecoder.cs
  70. 4
      src/ImageProcessor/Formats/IImageEncoder.cs
  71. 4
      src/ImageProcessor/Formats/IImageFormat.cs
  72. 4
      src/ImageProcessor/Formats/Jpg/JpegDecoder.cs
  73. 4
      src/ImageProcessor/Formats/Jpg/JpegEncoder.cs
  74. 4
      src/ImageProcessor/Formats/Jpg/JpegFormat.cs
  75. 4
      src/ImageProcessor/Formats/Jpg/LibJpeg/BitStream.cs
  76. 4
      src/ImageProcessor/Formats/Jpg/LibJpeg/DecompressorToJpegImage.cs
  77. 4
      src/ImageProcessor/Formats/Jpg/LibJpeg/IDecompressDestination.cs
  78. 4
      src/ImageProcessor/Formats/Png/GrayscaleReader.cs
  79. 4
      src/ImageProcessor/Formats/Png/IColorReader.cs
  80. 4
      src/ImageProcessor/Formats/Png/PaletteIndexReader.cs
  81. 4
      src/ImageProcessor/Formats/Png/PngChunk.cs
  82. 4
      src/ImageProcessor/Formats/Png/PngChunkTypes.cs
  83. 4
      src/ImageProcessor/Formats/Png/PngColorTypeInformation.cs
  84. 4
      src/ImageProcessor/Formats/Png/PngDecoder.cs
  85. 4
      src/ImageProcessor/Formats/Png/PngDecoderCore.cs
  86. 4
      src/ImageProcessor/Formats/Png/PngEncoder.cs
  87. 4
      src/ImageProcessor/Formats/Png/PngFormat.cs
  88. 4
      src/ImageProcessor/Formats/Png/PngHeader.cs
  89. 4
      src/ImageProcessor/Formats/Png/TrueColorReader.cs
  90. 4
      src/ImageProcessor/Formats/Png/Zlib/Adler32.cs
  91. 4
      src/ImageProcessor/Formats/Png/Zlib/Crc32.cs
  92. 4
      src/ImageProcessor/Formats/Png/Zlib/DeflateStrategy.cs
  93. 4
      src/ImageProcessor/Formats/Png/Zlib/Deflater.cs
  94. 4
      src/ImageProcessor/Formats/Png/Zlib/DeflaterConstants.cs
  95. 4
      src/ImageProcessor/Formats/Png/Zlib/DeflaterEngine.cs
  96. 4
      src/ImageProcessor/Formats/Png/Zlib/DeflaterOutputStream.cs
  97. 4
      src/ImageProcessor/Formats/Png/Zlib/DeflaterPending.cs
  98. 4
      src/ImageProcessor/Formats/Png/Zlib/GeneralBitFlags.cs
  99. 4
      src/ImageProcessor/Formats/Png/Zlib/IChecksum.cs
  100. 4
      src/ImageProcessor/IImageBase.cs

4
src/ImageProcessor/Colors/Color.cs

@ -1,5 +1,5 @@
// <copyright file="Color.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Color.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Colors/Formats/Bgra32.cs

@ -1,5 +1,5 @@
// <copyright file="Bgra32.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Bgra32.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Colors/Formats/Cmyk.cs

@ -1,5 +1,5 @@
// <copyright file="Cmyk.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Cmyk.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Colors/Formats/Hsv.cs

@ -1,5 +1,5 @@
// <copyright file="Hsv.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Hsv.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Colors/Formats/YCbCr.cs

@ -1,5 +1,5 @@
// <copyright file="YCbCr.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="YCbCr.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Common/Exceptions/ImageFormatException.cs

@ -1,5 +1,5 @@
// <copyright file="ImageFormatException.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ImageFormatException.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Common/Extensions/ByteExtensions.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ByteExtensions.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ByteExtensions.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Common/Extensions/ComparableExtensions.cs

@ -1,5 +1,5 @@
// <copyright file="ComparableExtensions.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ComparableExtensions.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Common/Extensions/EnumerableExtensions.cs

@ -1,5 +1,5 @@
// <copyright file="EnumerableExtensions.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="EnumerableExtensions.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Common/Helpers/Guard.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Guard.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Guard.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Common/Helpers/ImageMaths.cs

@ -1,5 +1,5 @@
// <copyright file="ImageMaths.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ImageMaths.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Alpha.cs

@ -1,5 +1,5 @@
// <copyright file="Alpha.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Alpha.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Blend.cs

@ -1,5 +1,5 @@
// <copyright file="Blend.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Blend.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Brightness.cs

@ -1,5 +1,5 @@
// <copyright file="Brightness.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Brightness.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/BlackWhite.cs

@ -1,5 +1,5 @@
// <copyright file="BlackWhite.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="BlackWhite.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/ColorMatrixFilter.cs

@ -1,5 +1,5 @@
// <copyright file="ColorMatrixFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ColorMatrixFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/GreyscaleBt601.cs

@ -1,5 +1,5 @@
// <copyright file="GreyscaleBt601.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GreyscaleBt601.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/GreyscaleBt709.cs

@ -1,5 +1,5 @@
// <copyright file="GreyscaleBt709.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GreyscaleBt709.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/GreyscaleMode.cs

@ -1,5 +1,5 @@
// <copyright file="GreyscaleMode.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GreyscaleMode.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/IColorMatrixFilter.cs

@ -1,5 +1,5 @@
// <copyright file="IColorMatrixFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IColorMatrixFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/Kodachrome.cs

@ -1,5 +1,5 @@
// <copyright file="Kodachrome.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Kodachrome.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/Lomograph.cs

@ -1,5 +1,5 @@
// <copyright file="Lomograph.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Lomograph.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/Polaroid.cs

@ -1,5 +1,5 @@
// <copyright file="Polaroid.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Polaroid.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/Saturation.cs

@ -1,5 +1,5 @@
// <copyright file="Saturation.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Saturation.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ColorMatrix/Sepia.cs

@ -1,5 +1,5 @@
// <copyright file="Sepia.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Sepia.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Contrast.cs

@ -1,5 +1,5 @@
// <copyright file="Contrast.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Contrast.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/Convolution2DFilter.cs

@ -1,5 +1,5 @@
// <copyright file="Convolution2DFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Convolution2DFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/Convolution2PassFilter.cs

@ -1,5 +1,5 @@
// <copyright file="Convolution2PassFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Convolution2PassFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/ConvolutionFilter.cs

@ -1,5 +1,5 @@
// <copyright file="ConvolutionFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ConvolutionFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/EdgeDetector2DFilter.cs

@ -1,5 +1,5 @@
// <copyright file="EdgeDetector2DFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="EdgeDetector2DFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/EdgeDetectorFilter.cs

@ -1,5 +1,5 @@
// <copyright file="EdgeDetectorFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="EdgeDetectorFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/IEdgeDetectorFilter.cs

@ -1,5 +1,5 @@
// <copyright file="IEdgeDetectorFilter.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IEdgeDetectorFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Kayyali.cs

@ -1,5 +1,5 @@
// <copyright file="Kayyali.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Kayyali.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Kirsch.cs

@ -1,5 +1,5 @@
// <copyright file="Kirsch.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Kirsch.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Laplacian3X3.cs

@ -1,5 +1,5 @@
// <copyright file="Laplacian3X3.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Laplacian3X3.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Laplacian5X5.cs

@ -1,5 +1,5 @@
// <copyright file="Laplacian5X5.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Laplacian5X5.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/LaplacianOfGaussian.cs

@ -1,5 +1,5 @@
// <copyright file="LaplacianOfGaussian.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="LaplacianOfGaussian.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Prewitt.cs

@ -1,5 +1,5 @@
// <copyright file="Prewitt.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Prewitt.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/RobertsCross.cs

@ -1,5 +1,5 @@
// <copyright file="RobertsCross.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="RobertsCross.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Scharr.cs

@ -1,5 +1,5 @@
// <copyright file="Scharr.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Scharr.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/EdgeDetection/Sobel.cs

@ -1,5 +1,5 @@
// <copyright file="Sobel.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Sobel.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/GuassianBlur.cs

@ -1,5 +1,5 @@
// <copyright file="GuassianBlur.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GuassianBlur.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Convolution/GuassianSharpen.cs

@ -1,5 +1,5 @@
// <copyright file="GuassianSharpen.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GuassianSharpen.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/ImageFilterExtensions.cs

@ -1,5 +1,5 @@
// <copyright file="ImageFilterExtensions.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="ImageFilterExtensions.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Filters/Invert.cs

@ -1,5 +1,5 @@
// <copyright file="Invert.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Invert.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

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

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpCompression.cs" company="James South">
// Copyright (c) James South and contributors.
// <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>

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

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpDecoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <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>

4
src/ImageProcessor/Formats/Bmp/BmpDecoderCore.cs

@ -1,5 +1,5 @@
// <copyright file="BmpDecoderCore.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="BmpDecoderCore.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Bmp/BmpEncoder.cs

@ -1,5 +1,5 @@
// <copyright file="BmpEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="BmpEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

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

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpFileHeader.cs" company="James South">
// Copyright (c) James South and contributors.
// <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>

4
src/ImageProcessor/Formats/Bmp/BmpFormat.cs

@ -1,5 +1,5 @@
// <copyright file="BmpFormat.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="BmpFormat.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

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

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BmpInfoHeader.cs" company="James South">
// Copyright (c) James South and contributors.
// <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>

4
src/ImageProcessor/Formats/Gif/BitEncoder.cs

@ -1,5 +1,5 @@
// <copyright file="BitEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="BitEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/DisposalMethod.cs

@ -1,5 +1,5 @@
// <copyright file="DisposalMethod.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DisposalMethod.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/GifConstants.cs

@ -1,5 +1,5 @@
// <copyright file="GifConstants.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifConstants.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/GifDecoder.cs

@ -1,5 +1,5 @@
// <copyright file="GifDecoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/GifDecoderCore.cs

@ -1,5 +1,5 @@
// <copyright file="GifDecoderCore.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifDecoderCore.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/GifEncoder.cs

@ -1,5 +1,5 @@
// <copyright file="GifEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/GifFormat.cs

@ -1,5 +1,5 @@
// <copyright file="GifFormat.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifFormat.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/LzwDecoder.cs

@ -1,5 +1,5 @@
// <copyright file="LzwDecoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="LzwDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/LzwEncoder.cs

@ -1,5 +1,5 @@
// <copyright file="LzwEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="LzwEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Quantizer/IQuantizer.cs

@ -1,5 +1,5 @@
// <copyright file="IQuantizer.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IQuantizer.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Quantizer/OctreeQuantizer.cs

@ -1,5 +1,5 @@
// <copyright file="OctreeQuantizer.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="OctreeQuantizer.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Quantizer/QuantizedImage.cs

@ -1,5 +1,5 @@
// <copyright file="QuantizedImage.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="QuantizedImage.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Quantizer/Quantizer.cs

@ -1,5 +1,5 @@
// <copyright file="Quantizer.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Quantizer.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Sections/GifGraphicsControlExtension.cs

@ -1,5 +1,5 @@
// <copyright file="GifGraphicsControlExtension.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifGraphicsControlExtension.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Sections/GifImageDescriptor.cs

@ -1,5 +1,5 @@
// <copyright file="GifImageDescriptor.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifImageDescriptor.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Gif/Sections/GifLogicalScreenDescriptor.cs

@ -1,5 +1,5 @@
// <copyright file="GifLogicalScreenDescriptor.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GifLogicalScreenDescriptor.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/IImageDecoder.cs

@ -1,5 +1,5 @@
// <copyright file="IImageDecoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IImageDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/IImageEncoder.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="IImageEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IImageEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/IImageFormat.cs

@ -1,5 +1,5 @@
// <copyright file="IImageFormat.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IImageFormat.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Jpg/JpegDecoder.cs

@ -1,5 +1,5 @@
// <copyright file="JpegDecoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="JpegDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Jpg/JpegEncoder.cs

@ -1,5 +1,5 @@
// <copyright file="JpegEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="JpegEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Jpg/JpegFormat.cs

@ -1,5 +1,5 @@
// <copyright file="JpegFormat.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="JpegFormat.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Jpg/LibJpeg/BitStream.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BitStream.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="BitStream.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Jpg/LibJpeg/DecompressorToJpegImage.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="DecompressorToJpegImage.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DecompressorToJpegImage.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Jpg/LibJpeg/IDecompressDestination.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="IDecompressDestination.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IDecompressDestination.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

4
src/ImageProcessor/Formats/Png/GrayscaleReader.cs

@ -1,5 +1,5 @@
// <copyright file="GrayscaleReader.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GrayscaleReader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/IColorReader.cs

@ -1,5 +1,5 @@
// <copyright file="IColorReader.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IColorReader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/PaletteIndexReader.cs

@ -1,5 +1,5 @@
// <copyright file="PaletteIndexReader.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PaletteIndexReader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/PngChunk.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PngChunk.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngChunk.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Png/PngChunkTypes.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PngChunkTypes.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngChunkTypes.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Png/PngColorTypeInformation.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PngColorTypeInformation.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngColorTypeInformation.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Png/PngDecoder.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PngDecoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngDecoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Png/PngDecoderCore.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PngDecoderCore.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngDecoderCore.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Png/PngEncoder.cs

@ -1,5 +1,5 @@
// <copyright file="PngEncoder.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngEncoder.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/PngFormat.cs

@ -1,5 +1,5 @@
// <copyright file="PngFormat.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngFormat.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/PngHeader.cs

@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PngHeader.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="PngHeader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>

4
src/ImageProcessor/Formats/Png/TrueColorReader.cs

@ -1,5 +1,5 @@
// <copyright file="TrueColorReader.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="TrueColorReader.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/Adler32.cs

@ -1,5 +1,5 @@
// <copyright file="Adler32.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Adler32.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/Crc32.cs

@ -1,5 +1,5 @@
// <copyright file="Crc32.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Crc32.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/DeflateStrategy.cs

@ -1,5 +1,5 @@
// <copyright file="DeflateStrategy.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DeflateStrategy.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/Deflater.cs

@ -1,5 +1,5 @@
// <copyright file="Deflater.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="Deflater.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/DeflaterConstants.cs

@ -1,5 +1,5 @@
// <copyright file="DeflaterConstants.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DeflaterConstants.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/DeflaterEngine.cs

@ -1,5 +1,5 @@
// <copyright file="DeflaterEngine.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DeflaterEngine.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/DeflaterOutputStream.cs

@ -1,5 +1,5 @@
// <copyright file="DeflaterOutputStream.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DeflaterOutputStream.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/DeflaterPending.cs

@ -1,5 +1,5 @@
// <copyright file="DeflaterPending.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="DeflaterPending.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/GeneralBitFlags.cs

@ -1,5 +1,5 @@
// <copyright file="GeneralBitFlags.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="GeneralBitFlags.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/Formats/Png/Zlib/IChecksum.cs

@ -1,5 +1,5 @@
// <copyright file="IChecksum.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IChecksum.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

4
src/ImageProcessor/IImageBase.cs

@ -1,5 +1,5 @@
// <copyright file="IImageBase.cs" company="James South">
// Copyright (c) James South and contributors.
// <copyright file="IImageBase.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save