SKCanvas.Scale 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
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)
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.