📜  PHP | imagickdraw getStrokeAntialias()函数(1)

📅  最后修改于: 2023-12-03 15:33:33.429000             🧑  作者: Mango

PHP | imagickdraw getStrokeAntialias()函数

介绍

imagickdraw getStrokeAntialias() 函数用于获取 ImagickDraw 对象的轮廓部分是否使用抗锯齿。如果启用了抗锯齿,仅应将抗锯齿应用于边框,而不应将其应用于填充。如果没有启用抗锯齿,则会将其应用于填充和边框。

语法
public bool ImagickDraw::getStrokeAntialias( void )
参数

该函数不接受任何参数。

返回值

返回一个布尔值,表示 ImagickDraw 对象的 stroke antialiasing 状态,为 true 表示启用了抗锯齿,为 false 表示未启用抗锯齿。

示例
<?php
// 创建 ImagickDraw 对象
$draw = new \ImagickDraw();

// 设置 stroke antialiasing 为 true
$draw->setStrokeAntialias(true);

// 获取 stroke antialiasing 的状态
$strokeAntialiasing = $draw->getStrokeAntialias();

echo "stroke antialiasing is " . ($strokeAntialiasing ? "enabled" : "disabled");

// 输出: stroke antialiasing is enabled

?>
参考链接