GStateSetTransform Method (Double, Double, Double, Double, Double, Double) |
Sets the transformation matrix for this element. This method accepts text
transformation matrix components directly.
A transformation matrix in PDF is specified by six numbers, usually
in the form of an Array containing six elements. In its most general
form, this Array is denoted [a b c d h v]; it can represent any linear
transformation from one coordinate system to another. For more
information about PDF matrices please refer to section 4.2.2 'Common
Transformations' in PDF Reference Manual, and to documentation for
pdftron::Common::Matrix2D class.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetTransform(
double a,
double b,
double c,
double d,
double h,
double v
)
Public Sub SetTransform (
a As Double,
b As Double,
c As Double,
d As Double,
h As Double,
v As Double
)
public:
virtual void SetTransform(
[InAttribute] double a,
[InAttribute] double b,
[InAttribute] double c,
[InAttribute] double d,
[InAttribute] double h,
[InAttribute] double v
) sealed
function SetTransform(a, b, c, d, h, v);
Parameters
- a
- Type: SystemDouble
- horizontal 'scaling' component of the new text matrix.
- b
- Type: SystemDouble
- 'rotation' component of the new text matrix.
- c
- Type: SystemDouble
- vertical 'scaling' component of the new text matrix.
- d
- Type: SystemDouble
- 'rotation' component of the new text matrix.
- h
- Type: SystemDouble
- horizontal translation component of the new text matrix.
- v
- Type: SystemDouble
- vertical translation component of the new text matrix.
See Also