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.
113 lines
4.0 KiB
113 lines
4.0 KiB
// Copyright (c) Six Labors and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using System.Numerics;
|
|
using SixLabors.ImageSharp.Drawing;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Tests.Drawing;
|
|
using SixLabors.Primitives;
|
|
using Xunit;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Drawing
|
|
{
|
|
using SixLabors.ImageSharp.Processing;
|
|
using SixLabors.ImageSharp.Processing.Overlays;
|
|
|
|
public class PolygonTests : FileTestBase
|
|
{
|
|
[Fact]
|
|
public void ImageShouldBeOverlayedByPolygonOutline()
|
|
{
|
|
string path = TestEnvironment.CreateOutputDirectory("Drawing", "Polygons");
|
|
|
|
using (Image<Rgba32> image = new Image<Rgba32>(500, 500))
|
|
{
|
|
image.Mutate(x => x
|
|
.BackgroundColor(Rgba32.Blue)
|
|
.DrawPolygon(Rgba32.HotPink, 5,
|
|
new SixLabors.Primitives.PointF[] {
|
|
new Vector2(10, 10),
|
|
new Vector2(200, 150),
|
|
new Vector2(50, 300)
|
|
}));
|
|
image.Save($"{path}/Simple.png");
|
|
|
|
using (PixelAccessor<Rgba32> sourcePixels = image.Lock())
|
|
{
|
|
Assert.Equal(Rgba32.HotPink, sourcePixels[9, 9]);
|
|
|
|
Assert.Equal(Rgba32.HotPink, sourcePixels[199, 149]);
|
|
|
|
Assert.Equal(Rgba32.Blue, sourcePixels[50, 50]);
|
|
|
|
Assert.Equal(Rgba32.Blue, sourcePixels[2, 2]);
|
|
}
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void ImageShouldBeOverlayedPolygonOutlineWithOpacity()
|
|
{
|
|
string path = TestEnvironment.CreateOutputDirectory("Drawing", "Polygons");
|
|
SixLabors.Primitives.PointF[] simplePath = new SixLabors.Primitives.PointF[] {
|
|
new Vector2(10, 10),
|
|
new Vector2(200, 150),
|
|
new Vector2(50, 300)
|
|
};
|
|
|
|
Rgba32 color = new Rgba32(Rgba32.HotPink.R, Rgba32.HotPink.G, Rgba32.HotPink.B, 150);
|
|
|
|
using (Image<Rgba32> image = new Image<Rgba32>(500, 500))
|
|
{
|
|
image.Mutate(x => x
|
|
.BackgroundColor(Rgba32.Blue)
|
|
.DrawPolygon(color, 10, simplePath));
|
|
image.Save($"{path}/Opacity.png");
|
|
|
|
//shift background color towards forground color by the opacity amount
|
|
Rgba32 mergedColor = new Rgba32(Vector4.Lerp(Rgba32.Blue.ToVector4(), Rgba32.HotPink.ToVector4(), 150f / 255f));
|
|
|
|
using (PixelAccessor<Rgba32> sourcePixels = image.Lock())
|
|
{
|
|
Assert.Equal(mergedColor, sourcePixels[9, 9]);
|
|
|
|
Assert.Equal(mergedColor, sourcePixels[199, 149]);
|
|
|
|
Assert.Equal(Rgba32.Blue, sourcePixels[50, 50]);
|
|
|
|
Assert.Equal(Rgba32.Blue, sourcePixels[2, 2]);
|
|
}
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void ImageShouldBeOverlayedByRectangleOutline()
|
|
{
|
|
string path = TestEnvironment.CreateOutputDirectory("Drawing", "Polygons");
|
|
|
|
using (Image<Rgba32> image = new Image<Rgba32>(500, 500))
|
|
{
|
|
image.Mutate(x => x
|
|
.BackgroundColor(Rgba32.Blue)
|
|
.Draw(Rgba32.HotPink, 10, new Rectangle(10, 10, 190, 140)));
|
|
image.Save($"{path}/Rectangle.png");
|
|
|
|
using (PixelAccessor<Rgba32> sourcePixels = image.Lock())
|
|
{
|
|
Assert.Equal(Rgba32.HotPink, sourcePixels[8, 8]);
|
|
|
|
Assert.Equal(Rgba32.HotPink, sourcePixels[198, 10]);
|
|
|
|
Assert.Equal(Rgba32.HotPink, sourcePixels[10, 50]);
|
|
|
|
Assert.Equal(Rgba32.Blue, sourcePixels[50, 50]);
|
|
|
|
Assert.Equal(Rgba32.Blue, sourcePixels[2, 2]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|