PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

CairoMatrix::initScale - Creates a new scaling matrix | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

CairoMatrix::initScale

cairo_matrix_init_scale

cairo_matrix_create_scale

(PECL cairo >= 0.1.0)

CairoMatrix::initScale -- cairo_matrix_init_scale -- cairo_matrix_create_scaleCreates a new scaling matrix

説明

オブジェクト指向型 (method):

public static void CairoMatrix::initScale ( float $sx , float $sy )

手続き型:

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.

パラメータ

sx

scale factor in the X direction

sy

scale factor in the Y direction

返り値

Returns a new CairoMatrix object that can be used with surfaces, contexts, and patterns.

例1 オブジェクト指向型

<?php
/* Create a new Matrix */
$matrix CairoMatrix::initScale(1.02.0);
?>

例2 手続き型

<?php
/* Create a new Matrix */
$matrix cairo_matrix_init_scale(1.02.0);
?>

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「CairoMatrix::initScale - Creates a new scaling matrix」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | CairoMatrix::initScale - Creates a new scaling matrix」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: