Click or drag to resize

PdfTransformType Enumeration

The type of transform that a PdfTransform is

Namespace:  Atalasoft.PdfDoc.Geometry
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public enum PdfTransformType
Members
  Member nameDescription
Identity Identity is a matrix which will provide the same output as the input.
Translate Translate is a matrix which will offset the position of the input points.
Scale Scale is a matrix which will stretch or shrink the position of input points
NonUniformScale NonUniformScale is a matrix which will stretch or shrink the position of input points, but will do so for different factors on the x and y coordinates.
Rotate Rotate is a matrix which will rotate input points around the origin
Skew Skew is a matrix which will offset points in a direction (usually in just the X or Y direction).
Other Other is a matrix which is a combination of other PdfTransformType matrices.
See Also