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.
58 lines
2.0 KiB
58 lines
2.0 KiB
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Processing;
|
|
using SixLabors.ImageSharp.Processing.Extensions.Transforms;
|
|
using SixLabors.ImageSharp.Processing.Processors.Transforms;
|
|
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
|
|
using Xunit;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
|
|
{
|
|
[GroupOutput("Transforms")]
|
|
public class SwizzleTests
|
|
{
|
|
private struct InvertXAndYSwizzler : ISwizzler
|
|
{
|
|
public InvertXAndYSwizzler(Size sourceSize)
|
|
{
|
|
this.DestinationSize = new Size(sourceSize.Height, sourceSize.Width);
|
|
}
|
|
|
|
public Size DestinationSize { get; }
|
|
|
|
public Point Transform(Point point)
|
|
=> 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>
|
|
{
|
|
using Image<TPixel> expectedImage = provider.GetImage();
|
|
using Image<TPixel> image = provider.GetImage();
|
|
|
|
image.Mutate(ctx => ctx.Swizzle(new InvertXAndYSwizzler(new Size(image.Width, image.Height))));
|
|
|
|
image.DebugSave(
|
|
provider,
|
|
nameof(InvertXAndYSwizzler),
|
|
appendPixelTypeToFileName: false,
|
|
appendSourceFileOrDescription: true);
|
|
|
|
image.Mutate(ctx => ctx.Swizzle(new InvertXAndYSwizzler(new Size(image.Width, image.Height))));
|
|
|
|
image.DebugSave(
|
|
provider,
|
|
"Unswizzle",
|
|
appendPixelTypeToFileName: false,
|
|
appendSourceFileOrDescription: true);
|
|
|
|
ImageComparer.Exact.VerifySimilarity(expectedImage, image);
|
|
}
|
|
}
|
|
}
|
|
|