Table of Contents

Struct BoxResampler

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

The function implements the box algorithm. Similar to nearest neighbor when upscaling. When downscaling the pixels will average, merging together.

public readonly struct BoxResampler : IResampler
Implements
Inherited Members

Properties

Radius

Gets the radius in which to sample pixels.

public float Radius { get; }

Property Value

float

Methods

ApplyTransform<TPixel>(IResamplingTransformImageProcessor<TPixel>)

Applies a transformation upon an image.

public void ApplyTransform<TPixel>(IResamplingTransformImageProcessor<TPixel> processor) where TPixel : unmanaged, IPixel<TPixel>

Parameters

processor IResamplingTransformImageProcessor<TPixel>

The transforming image processor.

Type Parameters

TPixel

The pixel format.

GetValue(float)

Gets the result of the interpolation algorithm.

public float GetValue(float x)

Parameters

x float

The value to process.

Returns

float

The float