mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Processing.Extensions.Transforms;
|
|
using SixLabors.ImageSharp.Processing.Processors.Transforms;
|
|
using Xunit;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
|
|
{
|
|
[GroupOutput("Transforms")]
|
|
public class SwizzleTests
|
|
{
|
|
private struct InvertXAndYSwizzler : ISwizzler
|
|
{
|
|
public Size DestinationSize => new Size(10, 10);
|
|
|
|
public void Transform(Point point, out Point newPoint)
|
|
=> newPoint = new Point(point.Y, point.X);
|
|
}
|
|
|
|
[Theory]
|
|
[WithTestPatternImages(20, 37, PixelTypes.Rgba32)]
|
|
[WithTestPatternImages(53, 37, PixelTypes.Byte4)]
|
|
[WithTestPatternImages(17, 32, PixelTypes.Rgba32)]
|
|
public void InvertXAndYSwizzle<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : unmanaged, IPixel<TPixel>
|
|
{
|
|
provider.RunValidatingProcessorTest(
|
|
ctx => ctx.Swizzle(default(InvertXAndYSwizzler)),
|
|
testOutputDetails: nameof(InvertXAndYSwizzler),
|
|
appendPixelTypeToFileName: false);
|
|
}
|
|
}
|
|
}
|
|
|