Browse Source

Add error description

Former-commit-id: dbebb6b47170689ec34562227bd121576804da24
Former-commit-id: 5c4a85d20676e216182fff6afe02a6efe8aa5578
Former-commit-id: 48be00b8ae0bd30faf6a900c44cc03e97eaad497
af/merge-core
James Jackson-South 11 years ago
parent
commit
2ab689a4de
  1. 6
      src/ImageProcessor/Samplers/Resize.cs

6
src/ImageProcessor/Samplers/Resize.cs

@ -10,6 +10,12 @@ namespace ImageProcessor.Samplers
/// <summary>
/// Provides methods that allow the resizing of images using various resampling algorithms.
/// <remarks>
/// 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.
/// </remarks>
/// </summary>
public class Resize : ParallelImageProcessor
{

Loading…
Cancel
Save