2024年PHP开发者大会 日本

ImagickDraw::line

(PECL imagick 2, PECL imagick 3)

ImagickDraw::line绘制一条线

描述

public ImagickDraw::line(
    float $sx,
    float $sy,
    float $ex,
    float $ey
): bool
警告

此函数目前未记录;仅提供其参数列表。

使用当前的描边颜色、描边不透明度和描边宽度在图像上绘制一条线。

参数

sx

起始x坐标

sy

起始y坐标

ex

结束x坐标

ey

结束y坐标

返回值

不返回值。

范例

示例 #1 ImagickDraw::line() 例子

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

$draw = new \ImagickDraw();

$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);

$draw->setStrokeWidth(2);
$draw->setFontSize(72);

$draw->line(125, 70, 100, 50);
$draw->line(350, 170, 100, 150);

$imagick = new \Imagick();
$imagick->newImage(500, 500, $backgroundColor);
$imagick->setImageFormat("png");
$imagick->drawImage($draw);

header("Content-Type: image/png");
echo
$imagick->getImageBlob();
}

?>

添加备注

用户贡献的笔记 1条笔记

-1
BinaryFarm dot com的GaryM
14年前
<?php

// 对上述雷达屏幕的一种改进。
// 此代码从中心点绘制随机颜色的辐条

$width = 400;
$height = 400;

$image = new Imagick();
$image->newImage( $width, $height, new ImagickPixel( 'wheat' ) );
$draw = new ImagickDraw();
//$draw->setStrokeColor( new ImagickPixel( 'black' ) );

$rx = $width / 2;
$ry = $height / 2;
$total = 2*M_PI;
$part = $total / 16;
while(
$total > 0 )
{
$ex = $rx +$rx * sin( $total );
$ey = $ry +$ry * cos( $total );
$draw->line ( $rx, $ry, $ex, $ey );
$total -= $part;

// 我们需要三个十六进制数来创建一个 RGB 颜色代码,例如 '#FF33DD'。

$draw->setStrokeColor( get_random_color() );
}
$image->drawImage( $draw );
$image->setImageFormat( "png" );
header( "Content-Type: image/png" );
echo
$image;
exit;

function
get_random_color() // 感谢 Greg R. 提供了这个简洁的小函数。
{
for (
$i = 0; $i<6; $i++)
{
$c .= dechex(rand(0,15));
}
return
"#$c";
}
?>
To Top