mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: c86755bb2a957a100ef1386057016a9aba9afa69 Former-commit-id: 4dd7c9371541ce54016f58ec3f1ab246f6da540d Former-commit-id: 07f91010fa4789a27c313f8ca74c0bd8709bab74pull/17/head
13 changed files with 69 additions and 50 deletions
@ -0,0 +1,21 @@ |
|||
// <copyright file="IColorMatrixFilter.cs" company="James South">
|
|||
// Copyright (c) James South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageProcessor.Filters |
|||
{ |
|||
using System.Numerics; |
|||
|
|||
/// <summary>
|
|||
/// Encapsulates properties and methods for creating processors that utilize a matrix to
|
|||
/// alter the image pixels.
|
|||
/// </summary>
|
|||
public interface IColorMatrixFilter |
|||
{ |
|||
/// <summary>
|
|||
/// Gets the <see cref="Matrix4x4"/> used to alter the image.
|
|||
/// </summary>
|
|||
Matrix4x4 Matrix { get; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue