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 : unmanaged, IPixel<TPixel>
Type Parameters
Name | Description |
---|---|
TPixel | The pixel format. |
Methods
| Edit this page View SourceApplyTransform<TResampler>(in TResampler)
Applies a resampling transform with the given sampler.
Declaration
void ApplyTransform<TResampler>(in TResampler sampler) where TResampler : struct, IResampler
Parameters
Type | Name | Description |
---|---|---|
TResampler | sampler | The sampler to use. |
Type Parameters
Name | Description |
---|---|
TResampler | The type of sampler. |