Table of Contents

Interface IResamplingTransformImageProcessor<TPixel>

Namespace
SixLabors.ImageSharp.Processing.Processors.Transforms
Assembly
SixLabors.ImageSharp.dll

Implements an algorithm to alter the pixels of an image via resampling transforms.

public interface IResamplingTransformImageProcessor<TPixel> : IImageProcessor<TPixel>, IDisposable where TPixel : unmanaged, IPixel<TPixel>

Type Parameters

TPixel

The pixel format.

Inherited Members

Methods

ApplyTransform<TResampler>(in TResampler)

Applies a resampling transform with the given sampler.

void ApplyTransform<TResampler>(in TResampler sampler) where TResampler : struct, IResampler

Parameters

sampler TResampler

The sampler to use.

Type Parameters

TResampler

The type of sampler.