Browse Source

64 bit only. Huge image

pull/1641/head
James Jackson-South 5 years ago
parent
commit
0110ff23ef
  1. 5
      tests/ImageSharp.Tests/Processing/Normalization/HistogramEqualizationTests.cs

5
tests/ImageSharp.Tests/Processing/Normalization/HistogramEqualizationTests.cs

@ -169,6 +169,11 @@ namespace SixLabors.ImageSharp.Tests.Processing.Normalization
public unsafe void Issue1640<TPixel>(TestImageProvider<TPixel> provider)
where TPixel : unmanaged, IPixel<TPixel>
{
if (!TestEnvironment.Is64BitProcess)
{
return;
}
using Image<TPixel> image = provider.GetImage();
// https://github.com/SixLabors/ImageSharp/discussions/1640

Loading…
Cancel
Save