Browse Source

Note to myself

Former-commit-id: 97c6b632b77e5ab683ce43013f21a97b06c256a4
Former-commit-id: 5f343cd0eaa9f1ef5503cf440f585a5c9f4ebddb
Former-commit-id: 3fbdb5f1c5e3282355b8f46c2b70f718254b76c5
af/merge-core
James Jackson-South 10 years ago
parent
commit
0d5d92286d
  1. 2
      src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs
  2. 1
      src/ImageProcessorCore/Formats/Png/PngDecoderCore.cs

2
src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs

@ -6,7 +6,7 @@
namespace ImageProcessorCore.Formats
{
/// <summary>
/// Provides enumeration of the various png filter types.
/// Provides enumeration of the various PNG filter types.
/// <see href="https://www.w3.org/TR/PNG-Filters.html"/>
/// </summary>
internal enum FilterType

1
src/ImageProcessorCore/Formats/Png/PngDecoderCore.cs

@ -393,6 +393,7 @@ namespace ImageProcessorCore.Formats
if (this.header.InterlaceMethod != 0)
{
// TODO: Support interlacing
throw new ImageFormatException("Interlacing is not supported.");
}
}

Loading…
Cancel
Save