ICanvasRenderingContext2DTransform Method |
Multiplies the current transformation matrix with the matrix described by its arguments.
Namespace: Aspose.Html.Dom.CanvasAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid Transform(
double a,
double b,
double c,
double d,
double e,
double f
)
Sub Transform (
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double
)
void Transform(
double a,
double b,
double c,
double d,
double e,
double f
)
abstract Transform :
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