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.
147 lines
5.0 KiB
147 lines
5.0 KiB
// <copyright file="ColorConversionTests.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageSharp.Tests.Drawing
|
|
{
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using Xunit;
|
|
using Drawing;
|
|
using ImageSharp.Drawing;
|
|
using System.Numerics;
|
|
using ImageSharp.Drawing.Shapes;
|
|
|
|
public class SolidComplexPolygonTests : FileTestBase
|
|
{
|
|
[Fact]
|
|
public void ImageShouldBeOverlayedByPolygonOutline()
|
|
{
|
|
string path = CreateOutputDirectory("Drawing", "ComplexPolygon");
|
|
var simplePath = new LinearPolygon(
|
|
new Vector2(10, 10),
|
|
new Vector2(200, 150),
|
|
new Vector2(50, 300));
|
|
|
|
var hole1 = new LinearPolygon(
|
|
new Vector2(37, 85),
|
|
new Vector2(93, 85),
|
|
new Vector2(65, 137));
|
|
|
|
var image = new Image(500, 500);
|
|
|
|
using (FileStream output = File.OpenWrite($"{path}/Simple.png"))
|
|
{
|
|
image
|
|
.BackgroundColor(Color.Blue)
|
|
.Fill(Color.HotPink, new ComplexPolygon(simplePath, hole1))
|
|
.Save(output);
|
|
}
|
|
|
|
using (var sourcePixels = image.Lock())
|
|
{
|
|
Assert.Equal(Color.HotPink, sourcePixels[11, 11]);
|
|
|
|
Assert.Equal(Color.HotPink, sourcePixels[200, 150]);
|
|
|
|
Assert.Equal(Color.HotPink, sourcePixels[50, 50]);
|
|
|
|
Assert.Equal(Color.HotPink, sourcePixels[35, 100]);
|
|
|
|
Assert.Equal(Color.Blue, sourcePixels[2, 2]);
|
|
|
|
//inside hole
|
|
Assert.Equal(Color.Blue, sourcePixels[57, 99]);
|
|
}
|
|
}
|
|
|
|
|
|
[Fact]
|
|
public void ImageShouldBeOverlayedPolygonOutlineWithOverlap()
|
|
{
|
|
string path = CreateOutputDirectory("Drawing", "ComplexPolygon");
|
|
var simplePath = new LinearPolygon(
|
|
new Vector2(10, 10),
|
|
new Vector2(200, 150),
|
|
new Vector2(50, 300));
|
|
|
|
var hole1 = new LinearPolygon(
|
|
new Vector2(37, 85),
|
|
new Vector2(130, 40),
|
|
new Vector2(65, 137));
|
|
|
|
var image = new Image(500, 500);
|
|
|
|
using (FileStream output = File.OpenWrite($"{path}/SimpleOverlapping.png"))
|
|
{
|
|
image
|
|
.BackgroundColor(Color.Blue)
|
|
.Fill(Color.HotPink, new ComplexPolygon(simplePath, hole1))
|
|
.Save(output);
|
|
}
|
|
|
|
using (var sourcePixels = image.Lock())
|
|
{
|
|
Assert.Equal(Color.HotPink, sourcePixels[11, 11]);
|
|
|
|
Assert.Equal(Color.HotPink, sourcePixels[200, 150]);
|
|
|
|
Assert.Equal(Color.HotPink, sourcePixels[50, 50]);
|
|
|
|
Assert.Equal(Color.HotPink, sourcePixels[35, 100]);
|
|
|
|
Assert.Equal(Color.Blue, sourcePixels[2, 2]);
|
|
|
|
//inside hole
|
|
Assert.Equal(Color.Blue, sourcePixels[57, 99]);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void ImageShouldBeOverlayedPolygonOutlineWithOpacity()
|
|
{
|
|
string path = CreateOutputDirectory("Drawing", "ComplexPolygon");
|
|
var simplePath = new LinearPolygon(
|
|
new Vector2(10, 10),
|
|
new Vector2(200, 150),
|
|
new Vector2(50, 300));
|
|
|
|
var hole1 = new LinearPolygon(
|
|
new Vector2(37, 85),
|
|
new Vector2(93, 85),
|
|
new Vector2(65, 137));
|
|
var color = new Color(Color.HotPink.R, Color.HotPink.G, Color.HotPink.B, 150);
|
|
|
|
var image = new Image(500, 500);
|
|
|
|
using (FileStream output = File.OpenWrite($"{path}/Opacity.png"))
|
|
{
|
|
image
|
|
.BackgroundColor(Color.Blue)
|
|
.Fill(color, new ComplexPolygon(simplePath, hole1))
|
|
.Save(output);
|
|
}
|
|
|
|
//shift background color towards forground color by the opacity amount
|
|
var mergedColor = new Color(Vector4.Lerp(Color.Blue.ToVector4(), Color.HotPink.ToVector4(), 150f / 255f));
|
|
|
|
using (var sourcePixels = image.Lock())
|
|
{
|
|
Assert.Equal(mergedColor, sourcePixels[11, 11]);
|
|
|
|
Assert.Equal(mergedColor, sourcePixels[200, 150]);
|
|
|
|
Assert.Equal(mergedColor, sourcePixels[50, 50]);
|
|
|
|
Assert.Equal(mergedColor, sourcePixels[35, 100]);
|
|
|
|
Assert.Equal(Color.Blue, sourcePixels[2, 2]);
|
|
|
|
//inside hole
|
|
Assert.Equal(Color.Blue, sourcePixels[57, 99]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|