ICanvasRenderingContext2DSetTransform Method |
Resets the current transform to the identity matrix, and then invokes the transform() method with the same arguments.
Namespace: Aspose.Html.Dom.CanvasAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid SetTransform(
double a,
double b,
double c,
double d,
double e,
double f
)
Sub SetTransform (
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double
)
void SetTransform(
double a,
double b,
double c,
double d,
double e,
double f
)
abstract SetTransform :
a : float *
b : float *
c : float *
d : float *
e : float *
f : float -> unit
Parameters
- a
- Type: SystemDouble
Horizontal scaling. - b
- Type: SystemDouble
Horizontal skewing. - c
- Type: SystemDouble
Vertical skewing. - d
- Type: SystemDouble
Vertical scaling. - e
- Type: SystemDouble
Horizontal moving. - f
- Type: SystemDouble
Vertical moving.
See Also