Graphics.ScaleTransform
Contents
[
Hide
]ScaleTransform(float, float)
Applies the specified scaling operation to the transformation matrix of this Graphics by prepending it to the object’s transformation matrix.
public void ScaleTransform(float sx, float sy)
Parameter | Type | Description |
---|---|---|
sx | Single | Scale factor in the x direction. |
sy | Single | Scale factor in the y direction. |
See Also
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
ScaleTransform(float, float, MatrixOrder)
Applies the specified scaling operation to the transformation matrix of this Graphics in the specified order.
public void ScaleTransform(float sx, float sy, MatrixOrder order)
Parameter | Type | Description |
---|---|---|
sx | Single | Scale factor in the x direction. |
sy | Single | Scale factor in the y direction. |
order | MatrixOrder | Member of the MatrixOrder enumeration that specifies whether the scaling operation is prepended or appended to the transformation matrix. |
See Also
- enum MatrixOrder
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing