Browse Source

Update license

pull/1330/head
Ildar Khayrutdinov 6 years ago
parent
commit
c73d44f126
  1. 2
      src/ImageSharp/Formats/Tiff/Compression/DeflateTiffCompression.cs
  2. 2
      src/ImageSharp/Formats/Tiff/Compression/LzwTiffCompression.cs
  3. 2
      src/ImageSharp/Formats/Tiff/Compression/NoneTiffCompression.cs
  4. 2
      src/ImageSharp/Formats/Tiff/Compression/PackBitsTiffCompression.cs
  5. 2
      src/ImageSharp/Formats/Tiff/Compression/TiffCompressionType.cs
  6. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffCompression.cs
  7. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffConstants.cs
  8. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffExtraSamples.cs
  9. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffFillOrder.cs
  10. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffNewSubfileType.cs
  11. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffOrientation.cs
  12. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffPhotometricInterpretation.cs
  13. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffPlanarConfiguration.cs
  14. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffResolutionUnit.cs
  15. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffSubfileType.cs
  16. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffTags.cs
  17. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffThreshholding.cs
  18. 2
      src/ImageSharp/Formats/Tiff/Constants/TiffType.cs
  19. 2
      src/ImageSharp/Formats/Tiff/ITiffDecoderOptions.cs
  20. 2
      src/ImageSharp/Formats/Tiff/ITiffEncoderOptions.cs
  21. 2
      src/ImageSharp/Formats/Tiff/ImageExtensions.cs
  22. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZero1TiffColor.cs
  23. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZero4TiffColor.cs
  24. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZero8TiffColor.cs
  25. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZeroTiffColor.cs
  26. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/PaletteTiffColor.cs
  27. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/Rgb888TiffColor.cs
  28. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/RgbPlanarTiffColor.cs
  29. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/RgbTiffColor.cs
  30. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/TiffColorType.cs
  31. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZero1TiffColor.cs
  32. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZero4TiffColor.cs
  33. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZero8TiffColor.cs
  34. 2
      src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZeroTiffColor.cs
  35. 2
      src/ImageSharp/Formats/Tiff/TiffConfigurationModule.cs
  36. 2
      src/ImageSharp/Formats/Tiff/TiffDecoder.cs
  37. 2
      src/ImageSharp/Formats/Tiff/TiffDecoderCore.cs
  38. 2
      src/ImageSharp/Formats/Tiff/TiffEncoder.cs
  39. 2
      src/ImageSharp/Formats/Tiff/TiffEncoderCore.cs
  40. 2
      src/ImageSharp/Formats/Tiff/TiffFormat.cs
  41. 2
      src/ImageSharp/Formats/Tiff/TiffIfd/TiffIfd.cs
  42. 2
      src/ImageSharp/Formats/Tiff/TiffIfd/TiffIfdEntry.cs
  43. 2
      src/ImageSharp/Formats/Tiff/TiffIfd/TiffIfdEntryCreator.cs
  44. 2
      src/ImageSharp/Formats/Tiff/TiffImageFormatDetector.cs
  45. 2
      src/ImageSharp/Formats/Tiff/TiffMetadataNames.cs
  46. 2
      src/ImageSharp/Formats/Tiff/Utils/BitReader.cs
  47. 2
      src/ImageSharp/Formats/Tiff/Utils/SubStream.cs
  48. 2
      src/ImageSharp/Formats/Tiff/Utils/TiffLzwDecoder.cs
  49. 2
      src/ImageSharp/Formats/Tiff/Utils/TiffLzwEncoder.cs
  50. 2
      src/ImageSharp/Formats/Tiff/Utils/TiffUtils.cs
  51. 2
      src/ImageSharp/Formats/Tiff/Utils/TiffWriter.cs
  52. 2
      tests/ImageSharp.Benchmarks/Codecs/DecodeTiff.cs
  53. 2
      tests/ImageSharp.Tests/Formats/Tiff/Compression/DeflateTiffCompressionTests.cs
  54. 2
      tests/ImageSharp.Tests/Formats/Tiff/Compression/LzwTiffCompressionTests.cs
  55. 2
      tests/ImageSharp.Tests/Formats/Tiff/Compression/NoneTiffCompressionTests.cs
  56. 2
      tests/ImageSharp.Tests/Formats/Tiff/Compression/PackBitsTiffCompressionTests.cs
  57. 2
      tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/BlackIsZeroTiffColorTests.cs
  58. 2
      tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/PaletteTiffColorTests.cs
  59. 2
      tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/PhotometricInterpretationTestBase.cs
  60. 2
      tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/RgbPlanarTiffColorTests.cs
  61. 2
      tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/RgbTiffColorTests.cs
  62. 2
      tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/WhiteIsZeroTiffColorTests.cs
  63. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderHeaderTests.cs
  64. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderIfdEntryTests.cs
  65. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderIfdTests.cs
  66. 4
      tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderImageTests.cs
  67. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderMetadataTests.cs
  68. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffEncoderHeaderTests.cs
  69. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffEncoderIfdTests.cs
  70. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffEncoderMetadataTests.cs
  71. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffFormatTests.cs
  72. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffIfd/TiffIfdEntryCreatorTests.cs
  73. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffIfd/TiffIfdEntryTests.cs
  74. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffIfd/TiffIfdTests.cs
  75. 2
      tests/ImageSharp.Tests/Formats/Tiff/TiffImageFormatDetectorTests.cs
  76. 2
      tests/ImageSharp.Tests/Formats/Tiff/Utils/SubStreamTests.cs
  77. 2
      tests/ImageSharp.Tests/Formats/Tiff/Utils/TiffWriterTests.cs
  78. 2
      tests/ImageSharp.Tests/TestUtilities/ByteArrayUtility.cs
  79. 2
      tests/ImageSharp.Tests/TestUtilities/ByteBuffer.cs
  80. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/ITiffGenDataSource.cs
  81. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenDataBlock.cs
  82. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenDataReference.cs
  83. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenEntry.cs
  84. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenExtensions.cs
  85. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenHeader.cs
  86. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenIfd.cs
  87. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenIfdExtensions.cs
  88. 2
      tests/ImageSharp.Tests/TestUtilities/Tiff/TiffIfdParser.cs

2
src/ImageSharp/Formats/Tiff/Compression/DeflateTiffCompression.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/Compression/LzwTiffCompression.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.IO;

2
src/ImageSharp/Formats/Tiff/Compression/NoneTiffCompression.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.IO;

2
src/ImageSharp/Formats/Tiff/Compression/PackBitsTiffCompression.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/Compression/TiffCompressionType.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffCompression.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffConstants.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Collections.Generic;

2
src/ImageSharp/Formats/Tiff/Constants/TiffExtraSamples.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffFillOrder.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffNewSubfileType.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/Constants/TiffOrientation.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffPhotometricInterpretation.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffPlanarConfiguration.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffResolutionUnit.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffSubfileType.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffTags.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffThreshholding.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Constants/TiffType.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/ITiffDecoderOptions.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats

2
src/ImageSharp/Formats/Tiff/ITiffEncoderOptions.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats

2
src/ImageSharp/Formats/Tiff/ImageExtensions.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.IO;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZero1TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZero4TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZero8TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/BlackIsZeroTiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/PaletteTiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/Rgb888TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/RgbPlanarTiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/RgbTiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/TiffColorType.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZero1TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZero4TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZero8TiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/Tiff/PhotometricInterpretation/WhiteIsZeroTiffColor.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/TiffConfigurationModule.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats

2
src/ImageSharp/Formats/Tiff/TiffDecoder.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.IO;

2
src/ImageSharp/Formats/Tiff/TiffDecoderCore.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/TiffEncoder.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.IO;

2
src/ImageSharp/Formats/Tiff/TiffEncoderCore.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/TiffFormat.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Collections.Generic;

2
src/ImageSharp/Formats/Tiff/TiffIfd/TiffIfd.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/TiffIfd/TiffIfdEntry.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/TiffIfd/TiffIfdEntryCreator.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/TiffImageFormatDetector.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/TiffMetadataNames.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats

2
src/ImageSharp/Formats/Tiff/Utils/BitReader.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Formats.Tiff

2
src/ImageSharp/Formats/Tiff/Utils/SubStream.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/Utils/TiffLzwDecoder.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/Utils/TiffLzwEncoder.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
src/ImageSharp/Formats/Tiff/Utils/TiffUtils.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.IO;

2
src/ImageSharp/Formats/Tiff/Utils/TiffWriter.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;

2
tests/ImageSharp.Benchmarks/Codecs/DecodeTiff.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Drawing;

2
tests/ImageSharp.Tests/Formats/Tiff/Compression/DeflateTiffCompressionTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/Compression/LzwTiffCompressionTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/Compression/NoneTiffCompressionTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/Compression/PackBitsTiffCompressionTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/BlackIsZeroTiffColorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/PaletteTiffColorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/PhotometricInterpretationTestBase.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/RgbPlanarTiffColorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/RgbTiffColorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/PhotometricInterpretation/WhiteIsZeroTiffColorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderHeaderTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderIfdEntryTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderIfdTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

4
tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderImageTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
@ -509,4 +509,4 @@ namespace SixLabors.ImageSharp.Tests
};
}
}
}
}

2
tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderMetadataTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/TiffEncoderHeaderTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffEncoderIfdTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffEncoderMetadataTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;

2
tests/ImageSharp.Tests/Formats/Tiff/TiffFormatTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffIfd/TiffIfdEntryCreatorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffIfd/TiffIfdEntryTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffIfd/TiffIfdTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/TiffImageFormatDetectorTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/Utils/SubStreamTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/Formats/Tiff/Utils/TiffWriterTests.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/ByteArrayUtility.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/ByteBuffer.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/ITiffGenDataSource.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenDataBlock.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenDataReference.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenEntry.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenExtensions.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenHeader.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenIfd.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffGenIfdExtensions.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

2
tests/ImageSharp.Tests/TestUtilities/Tiff/TiffIfdParser.cs

@ -1,4 +1,4 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Tests

Loading…
Cancel
Save