mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 1ead8cfe8162d009894eab0d501863a86a5a35e6 Former-commit-id: 647185c9a23e154ba4db0cc269900f89d562e2eb Former-commit-id: 1d3d8d15fc54f3ec460ebf5f2c7aa228801a29a1af/merge-core
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