(PECL imagick 2, PECL imagick 3)
ImagickDraw::scale — 调整缩放因子
此函数目前没有文档记录;只有其参数列表可用。
调整应用于当前坐标空间的水平和垂直方向的缩放因子。
x
水平因子
y
垂直因子
不返回值。
示例 #1 ImagickDraw::scale() 示例
<?php
function scale($strokeColor, $fillColor, $backgroundColor, $fillModifiedColor) {
$draw = new \ImagickDraw();
$draw->setStrokeColor($strokeColor);
$draw->setStrokeWidth(4);
$draw->setFillColor($fillColor);
$draw->rectangle(200, 200, 300, 300);
$draw->setFillColor($fillModifiedColor);
$draw->scale(1.4, 1.4);
$draw->rectangle(200, 200, 300, 300);
$image = new \Imagick();
$image->newImage(500, 500, $backgroundColor);
$image->setImageFormat("png");
$image->drawImage($draw);
header("Content-Type: image/png");
echo $image->getImageBlob();
}
?>