mirror of https://github.com/SixLabors/ImageSharp
5 changed files with 18 additions and 21 deletions
@ -1,21 +1,18 @@ |
|||||
// <copyright file="ICloneingImageProcessor.cs" company="James Jackson-South">
|
// <copyright file="ICloningImageProcessor.cs" company="James Jackson-South">
|
||||
// Copyright (c) James Jackson-South and contributors.
|
// Copyright (c) James Jackson-South and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
// </copyright>
|
// </copyright>
|
||||
|
|
||||
namespace ImageSharp.Processing |
namespace ImageSharp.Processing |
||||
{ |
{ |
||||
using System; |
|
||||
using System.Threading.Tasks; |
|
||||
|
|
||||
using ImageSharp.PixelFormats; |
using ImageSharp.PixelFormats; |
||||
using SixLabors.Primitives; |
using SixLabors.Primitives; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// Encapsulates methods to alter the pixels of an image.
|
/// Encapsulates methods to alter the pixels of a new image, cloned from the original image.
|
||||
/// </summary>
|
/// </summary>
|
||||
/// <typeparam name="TPixel">The pixel format.</typeparam>
|
/// <typeparam name="TPixel">The pixel format.</typeparam>
|
||||
internal interface ICloneingImageProcessor<TPixel> : IImageProcessor<TPixel> |
internal interface ICloningImageProcessor<TPixel> : IImageProcessor<TPixel> |
||||
where TPixel : struct, IPixel<TPixel> |
where TPixel : struct, IPixel<TPixel> |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
Loading…
Reference in new issue