TPDFContentMatrix

Data types

Description

Stores the six affine values used by PDF cm and Tm operators

Syntax

Delphi

TPDFContentMatrix = Record M11, M12, M21, M22, DX, DY: Double; End;

Remarks

The identity matrix is [1 0 0 1 0 0] and points map as x' = x*M11 + y*M21 + DX and y' = x*M12 + y*M22 + DY