PHP Conference Japan 2024

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 条注释

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

1 - 文本将为普通文本
2 - 下划线
3 - 上划线
4 - 删除线

此致,
Mark Paspirgilis
To Top