CairoMatrix::invert

(PECL cairo >= 0.1.0) The invert purpose public void CairoMatrix::invert ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoMatrix::invert() example <?php /* ...

CairoMatrix::initTranslate

(PECL cairo >= 0.1.0) Creates a new translation matrix public static void CairoMatrix::initTranslate ( float $tx, float $ty ) Object oriented style (method): Procedural style: object cairo_matrix_init_translate ( float $tx , float $ty ) Creates a new matrix to a transformation that translates by tx and ty in the X and Y dimensions, respectively. Parameters: tx amount

CairoMatrix::initScale

(PECL cairo >= 0.1.0) Creates a new scaling matrix public static void CairoMatrix::initScale ( float $sx, float $sy ) Object oriented style (method): Procedural style: object cairo_matrix_init_scale ( float $sx , float $sy ) Creates a new matrix to a transformation that scales by sx and sy in the X and Y dimensions, respectively. Parameters: sx scale factor in the X

CairoMatrix::initRotate

(PECL cairo >= 0.1.0) Creates a new rotated matrix public static void CairoMatrix::initRotate ( float $radians ) Object oriented style (method): Procedural style: object cairo_matrix_init_rotate ( float $radians ) Creats a new matrix to a transformation that rotates by radians provided Parameters: radians angle of rotation, in radians. The direction of rotation is de

CairoMatrix::initIdentity

(PECL cairo >= 0.1.0) Creates a new identity matrix public static void CairoMatrix::initIdentity ( void ) Object oriented style (method): Procedural style: object cairo_matrix_init_identity ( void ) Creates a new matrix that is an identity transformation. An identity transformation means the source data is copied into the destination data without change Returns: Returns a new CairoMatrix obje

CairoMatrix::__construct

(PECL cairo >= 0.1.0) Creates a new CairoMatrix object public CairoMatrix::__construct ([ float $xx = 1.0 [, float $yx = 0.0 [, float $xy = 0.0 [, float $yy = 1.0 [, float $x0 = 0.0 [, float $y0 = 0.0 ]]]]]] ) Object oriented style (method): Procedural style: object cairo_matrix_init ([ float $xx = 1.0 [, float $yx = 0.0 [, float $xy = 0.0 [, float $yy = 1.0 [, float $x0 = 0.0 [, float $y0 = 0.0 ]]]]]] ) Returns ne

CairoFormat::strideForWidth

(PECL cairo >= 0.1.0) Provides an appropiate stride to use public static int CairoFormat::strideForWidth ( int $format, int $width ) This method provides a stride value that will respect all alignment requirements of the accelerated image-rendering code within cairo. Parameters: format The desired CairoFormat to use width The width o

CairoRadialGradient::getCircles

(PECL cairo >= 0.1.0) The getCircles purpose public array CairoRadialGradient::getCircles ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoRadialGradient::getCircles() example

CairoRadialGradient::__construct

(PECL cairo >= 0.1.0) The __construct purpose public CairoRadialGradient::__construct ( float $x0, float $y0, float $r0, float $x1, float $y1, float $r1 ) Object oriented style: Procedural style: Creates a new radial gradient CairoPattern between the two circles defined by (x0, y0, r0) and (x1, y1, r1). Before using the gradient pattern, a number of color stops should be defined using CairoRadialGradient::addColorStopRgb(

CairoLinearGradient::getPoints

(PECL cairo >= 0.1.0) The getPoints purpose public array CairoLinearGradient::getPoints ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoLinearGradient::getPoints() example