ImagickDraw::setTextDecoration

(PECL imagick 2, PECL imagick 3)

ImagickDraw::setTextDecoration指定装饰

描述

public ImagickDraw::setTextDecoration(int $decoration): bool
警告

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

指定在使用文本进行注释时要应用的装饰。

参数

decoration

其中一个 DECORATION 常量 (imagick::DECORATION_*)。

返回值

没有返回值。

示例

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

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

$draw = new \ImagickDraw();

$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);
$draw->setStrokeWidth(2);
$draw->setFontSize(72);
$draw->setTextDecoration($textDecoration);
$draw->annotation(50, 75, "Lorem Ipsum!");

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

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

?>

添加注释

用户贡献注释 1 注释

up
11
mark-paspirgilis at web dot de
13 年前
嗨,各位。
我找了一整天关于如何设置该死的下划线的文档...
我现在自己找到了它.. 很高兴能够与你们分享我的新知识。
$decoration 可以是以下这些

1 - 文本将为正常
2 - 下划线
3 - 上划线
4 - 删除线

致敬,
Mark Paspirgilis
To Top