Interface IResamplingTransformImageProcessor<TPixel>
Implements an algorithm to alter the pixels of an image via resampling transforms.
Namespace: SixLabors.ImageSharp.Processing.Processors.Transforms
Assembly: SixLabors.ImageSharp.dll
Syntax
public interface IResamplingTransformImageProcessor<TPixel> : IImageProcessor<TPixel>, IDisposable where TPixel : struct, IPixel<TPixel>Type Parameters
| Name | Description | 
|---|---|
| TPixel | The pixel format. | 
Methods
| Improve this Doc View SourceApplyTransform<TResampler>(in TResampler)
Applies a resampling transform with the given sampler.
Declaration
void ApplyTransform<TResampler>(in TResampler sampler)
    where TResampler : struct, IResamplerParameters
| Type | Name | Description | 
|---|---|---|
| TResampler | sampler | The sampler to use. | 
Type Parameters
| Name | Description | 
|---|---|
| TResampler | The type of sampler. |