mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: a1f5890e16408916332a4aa3e6cb0454554a9964 Former-commit-id: 01019e4c20cb33666ac5407482ee77d77a9632a2 Former-commit-id: d6f42c3a126e0817a6840d3eccf9f62faf5696bapull/1/head
10 changed files with 51 additions and 22 deletions
@ -0,0 +1,14 @@ |
|||
// <copyright file="IImageSampler.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageProcessorCore.Samplers |
|||
{ |
|||
/// <summary>
|
|||
/// Acts as a marker for generic parameters that require an image sampler.
|
|||
/// </summary>
|
|||
public interface IImageSampler : IImageProcessor |
|||
{ |
|||
} |
|||
} |
|||
@ -0,0 +1,15 @@ |
|||
// <copyright file="ImageSampler.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageProcessorCore.Samplers |
|||
{ |
|||
/// <summary>
|
|||
/// Applies sampling methods to an image.
|
|||
/// All processors requiring resampling or resizing should inherit from this.
|
|||
/// </summary>
|
|||
public abstract class ImageSampler : ParallelImageProcessor, IImageSampler |
|||
{ |
|||
} |
|||
} |
|||
Loading…
Reference in new issue