📅  最后修改于: 2023-12-03 15:33:33.429000             🧑  作者: Mango
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
?>