Click or drag to resize

PdfiumFPDFMatrix_ConcatInverse Method

Inverts the matrix specified in the src parameter and than multiplies the dst matrix by the inverted matrix, and in the order specified in the prepended parameter.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFMatrix_ConcatInverse(
	FS_MATRIX dst,
	FS_MATRIX src,
	bool bPrepended = false
)

Parameters

dst  FS_MATRIX
The destination matrix
src  FS_MATRIX
The source matrix.
bPrepended  Boolean  (Optional)
Represents the order of the multiplication.
Remarks

if the specified order is Prepend (the prepend parameter is True), The Matrices are multiplied in a prepended order. Otherwise in an appended order.

  • Prepended order: [dst] = [src] x [dst]
  • Appended order: [dst] = [dst] x [src]

See Also