SKCanvas.Scale Method

Definition

Overloads

Scale(SKPoint)

Pre-concatenates the current matrix with the specified scale.

Scale(Single)

Pre-concatenates the current matrix with the specified scale.

Scale(Single, Single)

Pre-concatenates the current matrix with the specified scale.

Scale(Single, Single, Single, Single)

Pre-concatenates the current matrix with the specified scale, at the specific offset.

Scale(SKPoint)

Pre-concatenates the current matrix with the specified scale.

public void Scale (SkiaSharp.SKPoint size);

Parameters

size
SKPoint

The amount to scale.

Applies to

Scale(Single)

Pre-concatenates the current matrix with the specified scale.

public void Scale (float s);

Parameters

s
Single

The amount to scale.

Applies to

Scale(Single, Single)

Pre-concatenates the current matrix with the specified scale.

public void Scale (float sx, float sy);

Parameters

sx
Single

The amount to scale in the x-direction.

sy
Single

The amount to scale in the y-direction.

Applies to

Scale(Single, Single, Single, Single)

Pre-concatenates the current matrix with the specified scale, at the specific offset.

public void Scale (float sx, float sy, float px, float py);

Parameters

sx
Single

The amount to scale in the x-direction.

sy
Single

The amount to scale in the y-direction.

px
Single

The x-coordinate for the scaling center.

py
Single

The y-coordinate for the scaling center.

Applies to