Browse Source

Add error description

Former-commit-id: e015519c677560b93ac0d13470949cda12d090b6
Former-commit-id: 8699ed2d8a7eb733e7a38c04b56cc745aa355e9c
Former-commit-id: 4d4ab5bae1a6bba7d61502e0a019d50a834f285c
af/merge-core
James Jackson-South 10 years ago
parent
commit
b2d36c0ced
  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