SKShader.CreateLinearGradient Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateLinearGradient(SKPoint, SKPoint, SKColorF[], SKColorSpace, Single[], SKShaderTileMode, SKMatrix) | |
CreateLinearGradient(SKPoint, SKPoint, SKColorF[], SKColorSpace, Single[], SKShaderTileMode) | |
CreateLinearGradient(SKPoint, SKPoint, SKColor[], Single[], SKShaderTileMode, SKMatrix) |
Creates a shader that generates a linear gradient between the two specified points. |
CreateLinearGradient(SKPoint, SKPoint, SKColor[], Single[], SKShaderTileMode) |
Creates a shader that generates a linear gradient between the two specified points. |
CreateLinearGradient(SKPoint, SKPoint, SKColor[], SKShaderTileMode) |
Creates a shader that generates a linear gradient between the two specified points. |
CreateLinearGradient(SKPoint, SKPoint, SKColorF[], SKColorSpace, SKShaderTileMode) |
Examples
var info = new SKImageInfo(256, 256);
using (var surface = SKSurface.Create(info)) {
SKCanvas canvas = surface.Canvas;
canvas.Clear(SKColors.White);
// create the shader
var colors = new SKColor[] {
new SKColor(0, 0, 255),
new SKColor(0, 255, 0)
};
var shader = SKShader.CreateLinearGradient(
new SKPoint(0, 0),
new SKPoint(255, 255),
colors,
null,
SKShaderTileMode.Clamp);
// use the shader
var paint = new SKPaint {
Shader = shader
};
canvas.DrawPaint(paint);
}
The example above produces the following:
Remarks
Creates a shader that generates a linear gradient between the two specified points.
CreateLinearGradient(SKPoint, SKPoint, SKColorF[], SKColorSpace, Single[], SKShaderTileMode, SKMatrix)
public static SkiaSharp.SKShader CreateLinearGradient (SkiaSharp.SKPoint start, SkiaSharp.SKPoint end, SkiaSharp.SKColorF[] colors, SkiaSharp.SKColorSpace colorspace, float[] colorPos, SkiaSharp.SKShaderTileMode mode, SkiaSharp.SKMatrix localMatrix);
Parameters
- start
- SKPoint
- end
- SKPoint
- colors
- SKColorF[]
- colorspace
- SKColorSpace
- colorPos
- Single[]
- mode
- SKShaderTileMode
- localMatrix
- SKMatrix
Returns
Applies to
CreateLinearGradient(SKPoint, SKPoint, SKColorF[], SKColorSpace, Single[], SKShaderTileMode)
public static SkiaSharp.SKShader CreateLinearGradient (SkiaSharp.SKPoint start, SkiaSharp.SKPoint end, SkiaSharp.SKColorF[] colors, SkiaSharp.SKColorSpace colorspace, float[] colorPos, SkiaSharp.SKShaderTileMode mode);
Parameters
- start
- SKPoint
- end
- SKPoint
- colors
- SKColorF[]
- colorspace
- SKColorSpace
- colorPos
- Single[]
- mode
- SKShaderTileMode
Returns
Applies to
CreateLinearGradient(SKPoint, SKPoint, SKColor[], Single[], SKShaderTileMode, SKMatrix)
Creates a shader that generates a linear gradient between the two specified points.
public static SkiaSharp.SKShader CreateLinearGradient (SkiaSharp.SKPoint start, SkiaSharp.SKPoint end, SkiaSharp.SKColor[] colors, float[] colorPos, SkiaSharp.SKShaderTileMode mode, SkiaSharp.SKMatrix localMatrix);
Parameters
- start
- SKPoint
The start point for the gradient.
- end
- SKPoint
The end point for the gradient.
- colors
- SKColor[]
The array colors to be distributed between the two points.
- colorPos
- Single[]
The positions (in the range of 0..1) of each corresponding color, or null to evenly distribute the colors.
- mode
- SKShaderTileMode
The tiling mode.
- localMatrix
- SKMatrix
The matrix to apply before applying the shader.
Returns
Returns a new SKShader, or an empty shader on error. This function never returns null.
Applies to
CreateLinearGradient(SKPoint, SKPoint, SKColor[], Single[], SKShaderTileMode)
Creates a shader that generates a linear gradient between the two specified points.
public static SkiaSharp.SKShader CreateLinearGradient (SkiaSharp.SKPoint start, SkiaSharp.SKPoint end, SkiaSharp.SKColor[] colors, float[] colorPos, SkiaSharp.SKShaderTileMode mode);
Parameters
- start
- SKPoint
The start point for the gradient.
- end
- SKPoint
The end point for the gradient.
- colors
- SKColor[]
The array colors to be distributed between the two points.
- colorPos
- Single[]
The positions (in the range of 0..1) of each corresponding color, or null to evenly distribute the colors.
- mode
- SKShaderTileMode
The tiling mode.
Returns
Returns a new SKShader, or an empty shader on error. This function never returns null.
Applies to
CreateLinearGradient(SKPoint, SKPoint, SKColor[], SKShaderTileMode)
Creates a shader that generates a linear gradient between the two specified points.
public static SkiaSharp.SKShader CreateLinearGradient (SkiaSharp.SKPoint start, SkiaSharp.SKPoint end, SkiaSharp.SKColor[] colors, SkiaSharp.SKShaderTileMode mode);
Parameters
- start
- SKPoint
The start point for the gradient.
- end
- SKPoint
The end point for the gradient.
- colors
- SKColor[]
The array colors to be distributed between the two points.
- mode
- SKShaderTileMode
The tiling mode.
Returns
Returns a new SKShader, or an empty shader on error. This function never returns null.
Applies to
CreateLinearGradient(SKPoint, SKPoint, SKColorF[], SKColorSpace, SKShaderTileMode)
public static SkiaSharp.SKShader CreateLinearGradient (SkiaSharp.SKPoint start, SkiaSharp.SKPoint end, SkiaSharp.SKColorF[] colors, SkiaSharp.SKColorSpace colorspace, SkiaSharp.SKShaderTileMode mode);
Parameters
- start
- SKPoint
- end
- SKPoint
- colors
- SKColorF[]
- colorspace
- SKColorSpace
- mode
- SKShaderTileMode