From 2ab689a4de56d232808f6a8241c803ce039fdf70 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Wed, 21 Oct 2015 16:33:02 +1100 Subject: [PATCH] Add error description Former-commit-id: dbebb6b47170689ec34562227bd121576804da24 Former-commit-id: 5c4a85d20676e216182fff6afe02a6efe8aa5578 Former-commit-id: 48be00b8ae0bd30faf6a900c44cc03e97eaad497 --- src/ImageProcessor/Samplers/Resize.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ImageProcessor/Samplers/Resize.cs b/src/ImageProcessor/Samplers/Resize.cs index 4ed61dc6a4..cdcdd4f46e 100644 --- a/src/ImageProcessor/Samplers/Resize.cs +++ b/src/ImageProcessor/Samplers/Resize.cs @@ -10,6 +10,12 @@ namespace ImageProcessor.Samplers /// /// Provides methods that allow the resizing of images using various resampling algorithms. + /// + /// TODO: There is a bug in this class. Whenever the processor is set to use parallel processing, the output image becomes distorted + /// at the join points when startY is greater than 0. Uncomment the Parallelism overload and run the ImageShouldResize method in the SamplerTests + /// class to see the error manifest. + /// It is imperative that the issue is solved or resampling will be too slow to be practical and the project will have to cease. + /// /// public class Resize : ParallelImageProcessor {