Browse Source

Update source license info.

pull/1574/head
James Jackson-South 6 years ago
parent
commit
6183dd8c13
  1. 1
      .gitattributes
  2. 2
      Directory.Build.props
  3. 2
      shared-infrastructure
  4. 2
      src/ImageSharp/Advanced/AdvancedImageExtensions.cs
  5. 2
      src/ImageSharp/Advanced/AotCompilerTools.cs
  6. 2
      src/ImageSharp/Advanced/IConfigurationProvider.cs
  7. 2
      src/ImageSharp/Advanced/IImageVisitor.cs
  8. 2
      src/ImageSharp/Advanced/IPixelSource.cs
  9. 2
      src/ImageSharp/Advanced/IRowIntervalOperation.cs
  10. 2
      src/ImageSharp/Advanced/IRowIntervalOperation{TBuffer}.cs
  11. 2
      src/ImageSharp/Advanced/IRowOperation.cs
  12. 2
      src/ImageSharp/Advanced/IRowOperation{TBuffer}.cs
  13. 2
      src/ImageSharp/Advanced/ParallelExecutionSettings.cs
  14. 2
      src/ImageSharp/Advanced/ParallelRowIterator.Wrappers.cs
  15. 2
      src/ImageSharp/Advanced/ParallelRowIterator.cs
  16. 2
      src/ImageSharp/Color/Color.Conversions.cs
  17. 2
      src/ImageSharp/Color/Color.NamedColors.cs
  18. 2
      src/ImageSharp/Color/Color.WebSafePalette.cs
  19. 2
      src/ImageSharp/Color/Color.WernerPalette.cs
  20. 2
      src/ImageSharp/Color/Color.cs
  21. 2
      src/ImageSharp/ColorSpaces/CieLab.cs
  22. 2
      src/ImageSharp/ColorSpaces/CieLch.cs
  23. 2
      src/ImageSharp/ColorSpaces/CieLchuv.cs
  24. 2
      src/ImageSharp/ColorSpaces/CieLuv.cs
  25. 2
      src/ImageSharp/ColorSpaces/CieXyy.cs
  26. 2
      src/ImageSharp/ColorSpaces/CieXyz.cs
  27. 2
      src/ImageSharp/ColorSpaces/Cmyk.cs
  28. 2
      src/ImageSharp/ColorSpaces/Companding/GammaCompanding.cs
  29. 2
      src/ImageSharp/ColorSpaces/Companding/LCompanding.cs
  30. 2
      src/ImageSharp/ColorSpaces/Companding/Rec2020Companding.cs
  31. 2
      src/ImageSharp/ColorSpaces/Companding/Rec709Companding.cs
  32. 2
      src/ImageSharp/ColorSpaces/Companding/SRgbCompanding.cs
  33. 2
      src/ImageSharp/ColorSpaces/Conversion/CieConstants.cs
  34. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Adapt.cs
  35. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLab.cs
  36. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLch.cs
  37. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLchuv.cs
  38. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLuv.cs
  39. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieXyy.cs
  40. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieXyz.cs
  41. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Cmyk.cs
  42. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Hsl.cs
  43. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Hsv.cs
  44. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.HunterLab.cs
  45. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.LinearRgb.cs
  46. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Lms.cs
  47. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Rgb.cs
  48. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.YCbCr.cs
  49. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.cs
  50. 2
      src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverterOptions.cs
  51. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/CieXyChromaticityCoordinates.cs
  52. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CIeLchToCieLabConverter.cs
  53. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLabToCieLchConverter.cs
  54. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLabToCieXyzConverter.cs
  55. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLchuvToCieLuvConverter.cs
  56. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLuvToCieLchuvConverter.cs
  57. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLuvToCieXyzConverter.cs
  58. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzAndCieXyyConverter.cs
  59. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzAndHunterLabConverterBase.cs
  60. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzAndLmsConverter.cs
  61. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToCieLabConverter.cs
  62. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToCieLuvConverter.cs
  63. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToHunterLabConverter.cs
  64. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToLinearRgbConverter.cs
  65. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CmykAndRgbConverter.cs
  66. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/HslAndRgbConverter.cs
  67. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/HsvAndRgbConverter.cs
  68. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/HunterLabToCieXyzConverter.cs
  69. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/LinearRgbAndCieXyzConverterBase.cs
  70. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/LinearRgbToCieXyzConverter.cs
  71. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/LinearRgbToRgbConverter.cs
  72. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/RgbToLinearRgbConverter.cs
  73. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/YCbCrAndRgbConverter.cs
  74. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/IChromaticAdaptation.cs
  75. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/LmsAdaptationMatrix.cs
  76. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/RGBPrimariesChromaticityCoordinates.cs
  77. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/VonKriesChromaticAdaptation.cs
  78. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/GammaWorkingSpace.cs
  79. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/LWorkingSpace.cs
  80. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/Rec2020WorkingSpace.cs
  81. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/Rec709WorkingSpace.cs
  82. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/RgbWorkingSpace.cs
  83. 2
      src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/SRgbWorkingSpace.cs
  84. 2
      src/ImageSharp/ColorSpaces/Hsl.cs
  85. 2
      src/ImageSharp/ColorSpaces/Hsv.cs
  86. 2
      src/ImageSharp/ColorSpaces/HunterLab.cs
  87. 2
      src/ImageSharp/ColorSpaces/Illuminants.cs
  88. 2
      src/ImageSharp/ColorSpaces/LinearRgb.cs
  89. 2
      src/ImageSharp/ColorSpaces/Lms.cs
  90. 2
      src/ImageSharp/ColorSpaces/Rgb.cs
  91. 2
      src/ImageSharp/ColorSpaces/RgbWorkingSpaces.cs
  92. 2
      src/ImageSharp/ColorSpaces/YCbCr.cs
  93. 2
      src/ImageSharp/Common/Constants.cs
  94. 2
      src/ImageSharp/Common/Exceptions/ImageFormatException.cs
  95. 2
      src/ImageSharp/Common/Exceptions/ImageProcessingException.cs
  96. 2
      src/ImageSharp/Common/Exceptions/InvalidImageContentException.cs
  97. 2
      src/ImageSharp/Common/Exceptions/UnknownImageFormatException.cs
  98. 2
      src/ImageSharp/Common/Extensions/ComparableExtensions.cs
  99. 2
      src/ImageSharp/Common/Extensions/ConfigurationExtensions.cs
  100. 2
      src/ImageSharp/Common/Extensions/EncoderExtensions.cs

1
.gitattributes

@ -82,6 +82,7 @@
*.tga binary
*.ttc binary
*.ttf binary
*.webp binary
*.woff binary
*.woff2 binary
*.xls binary

2
Directory.Build.props

@ -126,7 +126,7 @@
<AdditionalFiles Include="$(MSBuildThisFileDirectory)shared-infrastructure\stylecop.json" />
<!--NuGet package icon source-->
<None Include="$(MSBuildThisFileDirectory)shared-infrastructure\branding\icons\imagesharp\sixlabors.imagesharp.128.png" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)shared-infrastructure\LICENSE.md" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)shared-infrastructure\NUGETLICENSE.md" Pack="true" PackagePath="LICENSE.md" />
</ItemGroup>
</Project>

2
shared-infrastructure

@ -1 +1 @@
Subproject commit ea561c249ba86352fe3b69e612b8072f3652eacb
Subproject commit 44686c6a116961f4a5163e19a0d6136e1b0b9f72

2
src/ImageSharp/Advanced/AdvancedImageExtensions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Linq;

2
src/ImageSharp/Advanced/AotCompilerTools.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Diagnostics.CodeAnalysis;

2
src/ImageSharp/Advanced/IConfigurationProvider.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Advanced
{

2
src/ImageSharp/Advanced/IImageVisitor.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using SixLabors.ImageSharp.PixelFormats;

2
src/ImageSharp/Advanced/IPixelSource.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;

2
src/ImageSharp/Advanced/IRowIntervalOperation.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using SixLabors.ImageSharp.Memory;

2
src/ImageSharp/Advanced/IRowIntervalOperation{TBuffer}.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using SixLabors.ImageSharp.Memory;

2
src/ImageSharp/Advanced/IRowOperation.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Advanced
{

2
src/ImageSharp/Advanced/IRowOperation{TBuffer}.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Advanced/ParallelExecutionSettings.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Threading.Tasks;

2
src/ImageSharp/Advanced/ParallelRowIterator.Wrappers.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Advanced/ParallelRowIterator.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Color/Color.Conversions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;
using System.Runtime.CompilerServices;

2
src/ImageSharp/Color/Color.NamedColors.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Collections.Generic;

2
src/ImageSharp/Color/Color.WebSafePalette.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Color/Color.WernerPalette.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Color/Color.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/CieLab.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/CieLch.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/CieLchuv.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/CieLuv.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/CieXyy.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/CieXyz.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Cmyk.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Companding/GammaCompanding.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Companding/LCompanding.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Companding/Rec2020Companding.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Companding/Rec709Companding.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Companding/SRgbCompanding.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/CieConstants.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.ColorSpaces.Conversion
{

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Adapt.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.ColorSpaces.Conversion
{

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLab.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLch.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLchuv.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieLuv.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieXyy.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.CieXyz.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Cmyk.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Hsl.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Hsv.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.HunterLab.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.LinearRgb.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Lms.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.Rgb.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.YCbCr.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/ColorSpaceConverterOptions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/CieXyChromaticityCoordinates.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CIeLchToCieLabConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLabToCieLchConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLabToCieXyzConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLchuvToCieLuvConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLuvToCieLchuvConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieLuvToCieXyzConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzAndCieXyyConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzAndHunterLabConverterBase.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzAndLmsConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToCieLabConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToCieLuvConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToHunterLabConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CieXyzToLinearRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/CmykAndRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/HslAndRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/HsvAndRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/HunterLabToCieXyzConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/LinearRgbAndCieXyzConverterBase.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/LinearRgbToCieXyzConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/LinearRgbToRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/RgbToLinearRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/Converters/YCbCrAndRgbConverter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/IChromaticAdaptation.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/LmsAdaptationMatrix.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/RGBPrimariesChromaticityCoordinates.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/VonKriesChromaticAdaptation.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/GammaWorkingSpace.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/LWorkingSpace.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.ColorSpaces.Companding;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/Rec2020WorkingSpace.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.ColorSpaces.Companding;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/Rec709WorkingSpace.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.ColorSpaces.Companding;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/RgbWorkingSpace.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/ColorSpaces/Conversion/Implementation/WorkingSpaces/SRgbWorkingSpace.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.ColorSpaces.Companding;

2
src/ImageSharp/ColorSpaces/Hsl.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Hsv.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/HunterLab.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Illuminants.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.ColorSpaces
{

2
src/ImageSharp/ColorSpaces/LinearRgb.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Lms.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/Rgb.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/ColorSpaces/RgbWorkingSpaces.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using SixLabors.ImageSharp.ColorSpaces.Companding;
using SixLabors.ImageSharp.ColorSpaces.Conversion;

2
src/ImageSharp/ColorSpaces/YCbCr.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Numerics;

2
src/ImageSharp/Common/Constants.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp
{

2
src/ImageSharp/Common/Exceptions/ImageFormatException.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Common/Exceptions/ImageProcessingException.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Common/Exceptions/InvalidImageContentException.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Common/Exceptions/UnknownImageFormatException.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp
{

2
src/ImageSharp/Common/Extensions/ComparableExtensions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/Common/Extensions/ConfigurationExtensions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Threading.Tasks;

2
src/ImageSharp/Common/Extensions/EncoderExtensions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
#if !SUPPORTS_ENCODING_STRING
using System;

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

Loading…
Cancel
Save