📷 A modern, cross-platform, 2D Graphics library for .NET
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
1.7 KiB

// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests
{
public class ImageRotationTests
{
[Fact]
public void RotateImageByMinus90Degrees()
{
(Size original, Size rotated) = Rotate(-90);
Assert.Equal(new Size(original.Height, original.Width), rotated);
}
[Fact]
public void RotateImageBy90Degrees()
{
(Size original, Size rotated) = Rotate(90);
Assert.Equal(new Size(original.Height, original.Width), rotated);
}
[Fact]
public void RotateImageBy180Degrees()
{
(Size original, Size rotated) = Rotate(180);
Assert.Equal(original, rotated);
}
[Fact]
public void RotateImageBy270Degrees()
{
(Size original, Size rotated) = Rotate(270);
Assert.Equal(new Size(original.Height, original.Width), rotated);
}
[Fact]
public void RotateImageBy360Degrees()
{
(Size original, Size rotated) = Rotate(360);
Assert.Equal(original, rotated);
}
private static (Size original, Size rotated) Rotate(int angle)
{
var file = TestFile.Create(TestImages.Bmp.Car);
using (var image = Image.Load<Rgba32>(file.FullPath))
{
Size original = image.Size();
image.Mutate(x => x.Rotate(angle));
return (original, image.Size());
}
}
}
}