ImagickDraw::setStrokeAntialias

(PECL imagick 2, PECL imagick 3)

ImagickDraw::setStrokeAntialias控制是否对描边的轮廓进行抗锯齿

描述

public ImagickDraw::setStrokeAntialias(bool $stroke_antialias): bool
警告

此函数目前没有文档,只有其参数列表可用。

控制是否对描边的轮廓进行抗锯齿。默认情况下,描边的轮廓会进行抗锯齿。当禁用抗锯齿时,描边的像素将被阈值化,以确定使用描边颜色还是底层画布颜色。

参数

stroke_antialias

抗锯齿设置

返回值

没有返回值。

示例

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

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

$draw = new \ImagickDraw();

$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);
$draw->setStrokeWidth(1);
$draw->setStrokeAntialias(false);
$draw->line(100, 100, 400, 105);

$draw->line(100, 140, 400, 185);

$draw->setStrokeAntialias(true);
$draw->line(100, 110, 400, 115);
$draw->line(100, 150, 400, 195);

$image = new \Imagick();
$image->newImage(500, 250, $backgroundColor);
$image->setImageFormat("png");

$image->drawImage($draw);

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

?>

添加备注

用户贡献的备注

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