From b2d36c0ced63fa6622c8f51e5b7736f8d49d96ff 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: e015519c677560b93ac0d13470949cda12d090b6 Former-commit-id: 8699ed2d8a7eb733e7a38c04b56cc745aa355e9c Former-commit-id: 4d4ab5bae1a6bba7d61502e0a019d50a834f285c --- 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 4ed61dc6a..cdcdd4f46 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 {