Edit

SKImageFilter.CreateOffset Method

Definition

Overloads

Name Description
CreateOffset(Single, Single, SKImageFilter, SKRect)

Creates an image filter that offsets the input image.

CreateOffset(Single, Single)

Creates an image filter that offsets the input image.

CreateOffset(Single, Single, SKImageFilter)

Creates an image filter that offsets the input image.

CreateOffset(Single, Single, SKImageFilter, SKRect)

Creates an image filter that offsets the input image.

public static SkiaSharp.SKImageFilter CreateOffset(float radiusX, float radiusY, SkiaSharp.SKImageFilter? input, SkiaSharp.SKRect cropRect);

Parameters

radiusX
Single

The morphology radius in the X direction.

radiusY
Single

The morphology radius in the Y direction.

input
SKImageFilter

The input filter to use, or null to use the source bitmap.

cropRect
SKRect

The rectangle to which the output processing will be limited.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateOffset(Single, Single)

Creates an image filter that offsets the input image.

public static SkiaSharp.SKImageFilter CreateOffset(float radiusX, float radiusY);

Parameters

radiusX
Single

The morphology radius in the X direction.

radiusY
Single

The morphology radius in the Y direction.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateOffset(Single, Single, SKImageFilter)

Creates an image filter that offsets the input image.

public static SkiaSharp.SKImageFilter CreateOffset(float radiusX, float radiusY, SkiaSharp.SKImageFilter? input);

Parameters

radiusX
Single

The morphology radius in the X direction.

radiusY
Single

The morphology radius in the Y direction.

input
SKImageFilter

The input filter to use, or null to use the source bitmap.

Returns

Returns the new SKImageFilter, or null on error.

Applies to