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.
75 lines
3.2 KiB
75 lines
3.2 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.Processors.Drawing;
|
|
using SixLabors.ImageSharp.Tests.Processing;
|
|
|
|
using Xunit;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Drawing
|
|
{
|
|
public class DrawImageExtensionsTests : BaseImageOperationsExtensionTest
|
|
{
|
|
[Fact]
|
|
public void DrawImage_OpacityOnly_VerifyGraphicOptionsTakenFromContext()
|
|
{
|
|
// non-default values as we cant easly defect usage otherwise
|
|
this.options.AlphaCompositionMode = PixelAlphaCompositionMode.Xor;
|
|
this.options.ColorBlendingMode = PixelColorBlendingMode.Screen;
|
|
|
|
this.operations.DrawImage(null, 0.5f);
|
|
DrawImageProcessor dip = this.Verify<DrawImageProcessor>();
|
|
|
|
Assert.Equal(0.5, dip.Opacity);
|
|
Assert.Equal(this.options.AlphaCompositionMode, dip.AlphaCompositionMode);
|
|
Assert.Equal(this.options.ColorBlendingMode, dip.ColorBlendingMode);
|
|
}
|
|
|
|
[Fact]
|
|
public void DrawImage_OpacityAndBlending_VerifyGraphicOptionsTakenFromContext()
|
|
{
|
|
// non-default values as we cant easly defect usage otherwise
|
|
this.options.AlphaCompositionMode = PixelAlphaCompositionMode.Xor;
|
|
this.options.ColorBlendingMode = PixelColorBlendingMode.Screen;
|
|
|
|
this.operations.DrawImage(null, PixelColorBlendingMode.Multiply, 0.5f);
|
|
DrawImageProcessor dip = this.Verify<DrawImageProcessor>();
|
|
|
|
Assert.Equal(0.5, dip.Opacity);
|
|
Assert.Equal(this.options.AlphaCompositionMode, dip.AlphaCompositionMode);
|
|
Assert.Equal(PixelColorBlendingMode.Multiply, dip.ColorBlendingMode);
|
|
}
|
|
|
|
[Fact]
|
|
public void DrawImage_LocationAndOpacity_VerifyGraphicOptionsTakenFromContext()
|
|
{
|
|
// non-default values as we cant easly defect usage otherwise
|
|
this.options.AlphaCompositionMode = PixelAlphaCompositionMode.Xor;
|
|
this.options.ColorBlendingMode = PixelColorBlendingMode.Screen;
|
|
|
|
this.operations.DrawImage(null, Point.Empty, 0.5f);
|
|
DrawImageProcessor dip = this.Verify<DrawImageProcessor>();
|
|
|
|
Assert.Equal(0.5, dip.Opacity);
|
|
Assert.Equal(this.options.AlphaCompositionMode, dip.AlphaCompositionMode);
|
|
Assert.Equal(this.options.ColorBlendingMode, dip.ColorBlendingMode);
|
|
}
|
|
|
|
[Fact]
|
|
public void DrawImage_LocationAndOpacityAndBlending_VerifyGraphicOptionsTakenFromContext()
|
|
{
|
|
// non-default values as we cant easly defect usage otherwise
|
|
this.options.AlphaCompositionMode = PixelAlphaCompositionMode.Xor;
|
|
this.options.ColorBlendingMode = PixelColorBlendingMode.Screen;
|
|
|
|
this.operations.DrawImage(null, Point.Empty, PixelColorBlendingMode.Multiply, 0.5f);
|
|
DrawImageProcessor dip = this.Verify<DrawImageProcessor>();
|
|
|
|
Assert.Equal(0.5, dip.Opacity);
|
|
Assert.Equal(this.options.AlphaCompositionMode, dip.AlphaCompositionMode);
|
|
Assert.Equal(PixelColorBlendingMode.Multiply, dip.ColorBlendingMode);
|
|
}
|
|
}
|
|
}
|
|
|