PHP Conference Japan 2024

ImagickDraw::affine

(PECL imagick 2, PECL imagick 3)

ImagickDraw::affine调整当前仿射变换矩阵

描述

public ImagickDraw::affine(数组 $affine): 布尔值
警告

此函数目前没有文档;仅提供其参数列表。

使用指定的仿射变换矩阵调整当前仿射变换矩阵。

参数

affine

仿射矩阵参数

返回值

不返回值。

示例

示例 #1 ImagickDraw::affine() 示例

<?php
function affine($strokeColor, $fillColor, $backgroundColor) {

$draw = new \ImagickDraw();

$draw->setStrokeWidth(1);
$draw->setStrokeOpacity(1);
$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);

$draw->setStrokeWidth(2);

$PI = 3.141592653589794;
$angle = 60 * $PI / 360;

//缩放绘图坐标。
$affineScale = array("sx" => 1.75, "sy" => 1.75, "rx" => 0, "ry" => 0, "tx" => 0, "ty" => 0);

//倾斜绘图坐标。
$affineShear = array("sx" => 1, "sy" => 1, "rx" => sin($angle), "ry" => -sin($angle), "tx" => 0, "ty" => 0);

//旋转绘图坐标。剪切仿射矩阵
//生成的绘图比例不正确。
$affineRotate = array("sx" => cos($angle), "sy" => cos($angle), "rx" => sin($angle), "ry" => -sin($angle), "tx" => 0, "ty" => 0,);

//平移(偏移)绘图
$affineTranslate = array("sx" => 1, "sy" => 1, "rx" => 0, "ry" => 0, "tx" => 30, "ty" => 30);

//单位仿射矩阵
$affineIdentity = array("sx" => 1, "sy" => 1, "rx" => 0, "ry" => 0, "tx" => 0, "ty" => 0);

$examples = [$affineScale, $affineShear, $affineRotate, $affineTranslate, $affineIdentity,];

$count = 0;

foreach (
$examples as $example) {
$draw->push();
$draw->translate(($count % 2) * 250, intval($count / 2) * 250);
$draw->translate(100, 100);
$draw->affine($example);
$draw->rectangle(-50, -50, 50, 50);
$draw->pop();
$count++;
}

//创建一个图像对象,可以在其中渲染绘图命令
$image = new \Imagick();
$image->newImage(500, 750, $backgroundColor);
$image->setImageFormat("png");

//将ImagickDraw对象中的绘图命令
//渲染到图像中。
$image->drawImage($draw);

//将图像发送到浏览器
header("Content-Type: image/png");
echo
$image->getImageBlob();
}

?>

添加注释

用户贡献的注释

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