imageaffinematrixget

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

imageaffinematrixget获取仿射变换矩阵

说明

imageaffinematrixget(int $type, array|float $options): array|false

返回仿射变换矩阵。

参数

type

其中一个 IMG_AFFINE_* 常量。

options

如果 typeIMG_AFFINE_TRANSLATEIMG_AFFINE_SCALEoptions 必须是一个 array,其键为 xy,两者都具有 float 值。

如果 typeIMG_AFFINE_ROTATEIMG_AFFINE_SHEAR_HORIZONTALIMG_AFFINE_SHEAR_VERTICALoptions 必须是一个 float,指定角度。

返回值

仿射变换矩阵(一个具有键 05 和浮点值的数组),或在失败时为 false

范例

范例 #1 imageaffinematrixget() 范例

<?php
$matrix
= imageaffinematrixget(IMG_AFFINE_TRANSLATE, array('x' => 2, 'y' => 3));
print_r($matrix);
?>

以上范例将输出

Array
(
    [0] => 1
    [1] => 0
    [2] => 0
    [3] => 1
    [4] => 2
    [5] => 3
)

参见

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top