PHP Doku:: Applies scaling to a matrix - cairomatrix.scale.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungCairoThe CairoMatrix classCairoMatrix::scale -- cairo_matrix_scale

Ein Service von Reinhard Neidl - Webprogrammierung.

The CairoMatrix class

<<CairoMatrix::rotate -- cairo_rotate

CairoMatrix::transformDistance>>

CairoMatrix::scale

cairo_matrix_scale

(PECL cairo >= 0.1.0)

CairoMatrix::scale -- cairo_matrix_scaleApplies scaling to a matrix

Beschreibung

Object oriented style (method):

public void CairoMatrix::scale ( float $sx , float $sy )

Procedural style:

void cairo_matrix_scale ( CairoContext $context , float $sx , float $sy )

Applies scaling by sx, sy to the transformation in the matrix. The effect of the new transformation is to first scale the coordinates by sx and sy, then apply the original transformation to the coordinates.

Parameter-Liste

matrix

Procedural only - CairoMatrix instance

sx

scale factor in the X direction

sy

scale factor in the Y direction

Beispiele

Beispiel #1 Object oriented style

<?php
/* Apply scaling to a matrix */
$matrix = new CairoMatrix(1.00.50.01.00.00.0);
$matrix->scale(0.22.0);
?>

Beispiel #2 Procedural style

<?php
/* Apply scaling to a matrix */
$matrix cairo_matrix_init(1.00.50.01.00.00.0);
cairo_matrix_scale($matrix0.22.0);
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)