From 0d5d92286d8448957f98a73fee707a073a3e1405 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 18 Aug 2016 21:45:05 +1000 Subject: [PATCH] Note to myself Former-commit-id: 97c6b632b77e5ab683ce43013f21a97b06c256a4 Former-commit-id: 5f343cd0eaa9f1ef5503cf440f585a5c9f4ebddb Former-commit-id: 3fbdb5f1c5e3282355b8f46c2b70f718254b76c5 --- src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs | 2 +- src/ImageProcessorCore/Formats/Png/PngDecoderCore.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs b/src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs index 6f1f29c212..dcb1ec80ec 100644 --- a/src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs +++ b/src/ImageProcessorCore/Formats/Png/Filters/FilterType.cs @@ -6,7 +6,7 @@ namespace ImageProcessorCore.Formats { /// - /// Provides enumeration of the various png filter types. + /// Provides enumeration of the various PNG filter types. /// /// internal enum FilterType diff --git a/src/ImageProcessorCore/Formats/Png/PngDecoderCore.cs b/src/ImageProcessorCore/Formats/Png/PngDecoderCore.cs index 36728a7388..582f56dad3 100644 --- a/src/ImageProcessorCore/Formats/Png/PngDecoderCore.cs +++ b/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."); } }