diff --git a/src/ImageSharp/Formats/Png/PngChunkFilter.cs b/src/ImageSharp/Formats/Png/PngChunkFilter.cs
index 31d3012a6..4e8b5ab96 100644
--- a/src/ImageSharp/Formats/Png/PngChunkFilter.cs
+++ b/src/ImageSharp/Formats/Png/PngChunkFilter.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;
diff --git a/src/ImageSharp/Formats/Png/PngTransparentColorBehavior.cs b/src/ImageSharp/Formats/Png/PngTransparentColorBehavior.cs
index b459751c4..a288ecab5 100644
--- a/src/ImageSharp/Formats/Png/PngTransparentColorBehavior.cs
+++ b/src/ImageSharp/Formats/Png/PngTransparentColorBehavior.cs
@@ -9,14 +9,14 @@ namespace SixLabors.ImageSharp.Formats.Png
public enum PngTransparentColorBehavior
{
///
- /// Converts fully transparent pixels that may contain R, G, B values which are not 0,
- /// to transparent black, which can yield in better compression in some cases.
+ /// The transparency will be kept as is.
///
- Clear,
+ Preserve = 0,
///
- /// The transparency will be kept as is.
+ /// Converts fully transparent pixels that may contain R, G, B values which are not 0,
+ /// to transparent black, which can yield in better compression in some cases.
///
- Preserve
+ Clear = 1,
}
}
diff --git a/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.Chunks.cs b/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.Chunks.cs
index 0418b36c8..fa63f73e0 100644
--- a/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.Chunks.cs
+++ b/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.Chunks.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.Binary;