|
|
|
@ -15,98 +15,126 @@ namespace SixLabors.ImageSharp.Processing |
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to blend. Must be between 0 and 1.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, float opacity) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, Point.Empty, GraphicsOptions.Default.ColorBlendingMode, GraphicsOptions.Default.AlphaCompositionMode, opacity)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
float opacity) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor( |
|
|
|
image, |
|
|
|
Point.Empty, |
|
|
|
GraphicsOptions.Default.ColorBlendingMode, |
|
|
|
GraphicsOptions.Default.AlphaCompositionMode, |
|
|
|
opacity)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="colorBlending">The blending mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to blend. Must be between 0 and 1.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, PixelColorBlendingMode colorBlending, float opacity) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, Point.Empty, colorBlending, GraphicsOptions.Default.AlphaCompositionMode, opacity)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
float opacity) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor( |
|
|
|
image, |
|
|
|
Point.Empty, |
|
|
|
colorBlending, |
|
|
|
GraphicsOptions.Default.AlphaCompositionMode, |
|
|
|
opacity)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="colorBlending">The color blending mode.</param>
|
|
|
|
/// <param name="alphaComposition">The alpha composition mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to blend. Must be between 0 and 1.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, PixelColorBlendingMode colorBlending, PixelAlphaCompositionMode alphaComposition, float opacity) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, Point.Empty, colorBlending, alphaComposition, opacity)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
PixelAlphaCompositionMode alphaComposition, |
|
|
|
float opacity) => |
|
|
|
source.ApplyProcessor(new DrawImageProcessor(image, Point.Empty, colorBlending, alphaComposition, opacity)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="options">The options, including the blending type and blending amount.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, GraphicsOptions options) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, Point.Empty, options.ColorBlendingMode, options.AlphaCompositionMode, options.BlendPercentage)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
GraphicsOptions options) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor( |
|
|
|
image, |
|
|
|
Point.Empty, |
|
|
|
options.ColorBlendingMode, |
|
|
|
options.AlphaCompositionMode, |
|
|
|
options.BlendPercentage)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="location">The location to draw the blended image.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to blend. Must be between 0 and 1.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, Point location, float opacity) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, location, GraphicsOptions.Default.ColorBlendingMode, GraphicsOptions.Default.AlphaCompositionMode, opacity)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
Point location, |
|
|
|
float opacity) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor( |
|
|
|
image, |
|
|
|
location, |
|
|
|
GraphicsOptions.Default.ColorBlendingMode, |
|
|
|
GraphicsOptions.Default.AlphaCompositionMode, |
|
|
|
opacity)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="location">The location to draw the blended image.</param>
|
|
|
|
/// <param name="colorBlending">The color blending to apply.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to blend. Must be between 0 and 1.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, Point location, PixelColorBlendingMode colorBlending, float opacity) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, location, colorBlending, GraphicsOptions.Default.AlphaCompositionMode, opacity)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
Point location, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
float opacity) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor( |
|
|
|
image, |
|
|
|
location, |
|
|
|
colorBlending, |
|
|
|
GraphicsOptions.Default.AlphaCompositionMode, |
|
|
|
opacity)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="location">The location to draw the blended image.</param>
|
|
|
|
@ -114,24 +142,34 @@ namespace SixLabors.ImageSharp.Processing |
|
|
|
/// <param name="alphaComposition">The alpha composition mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to blend. Must be between 0 and 1.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, Point location, PixelColorBlendingMode colorBlending, PixelAlphaCompositionMode alphaComposition, float opacity) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, location, colorBlending, alphaComposition, opacity)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
Point location, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
PixelAlphaCompositionMode alphaComposition, |
|
|
|
float opacity) => |
|
|
|
source.ApplyProcessor(new DrawImageProcessor(image, location, colorBlending, alphaComposition, opacity)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the current one by blending their pixels.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TPixelDst">The pixel format of the destination image.</typeparam>
|
|
|
|
/// <typeparam name="TPixelSrc">The pixel format of the source image.</typeparam>
|
|
|
|
/// <param name="source">The image this method extends.</param>
|
|
|
|
/// <param name="image">The image to blend with the currently processing image.</param>
|
|
|
|
/// <param name="location">The location to draw the blended image.</param>
|
|
|
|
/// <param name="options">The options containing the blend mode and opacity.</param>
|
|
|
|
/// <returns>The <see cref="Image{TPixelDst}"/>.</returns>
|
|
|
|
public static IImageProcessingContext<TPixelDst> DrawImage<TPixelDst, TPixelSrc>(this IImageProcessingContext<TPixelDst> source, Image<TPixelSrc> image, Point location, GraphicsOptions options) |
|
|
|
where TPixelDst : struct, IPixel<TPixelDst> |
|
|
|
where TPixelSrc : struct, IPixel<TPixelSrc> |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor<TPixelDst, TPixelSrc>(image, location, options.ColorBlendingMode, options.AlphaCompositionMode, options.BlendPercentage)); |
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image image, |
|
|
|
Point location, |
|
|
|
GraphicsOptions options) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor( |
|
|
|
image, |
|
|
|
location, |
|
|
|
options.ColorBlendingMode, |
|
|
|
options.AlphaCompositionMode, |
|
|
|
options.BlendPercentage)); |
|
|
|
} |
|
|
|
} |