Construct a instance to the geometric transform defined by the specified rectangle and array of points.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfMatrix(
	Rectangle rect,
	Point[] plgpts
)
Public Sub New ( 
	rect As Rectangle,
	plgpts As Point()
)
public:
PdfMatrix(
	Rectangle rect, 
	array<Point>^ plgpts
)
new : 
        rect : Rectangle * 
        plgpts : Point[] -> PdfMatrix

Parameters

rect
Rectangle
A System.Drawing.Rectangle structure that represents the rectangle.
plgpts
array<Point>[]()[][]
An array of three System.Drawing.Point structures that represents the points of a parallelogram to which the upper-left, upper-right, and lower-left corners of the rectangle is to be transformed. The lower-right corner of the parallelogram is implied by the first three corners.

See Also