嗨,大家好。
我找了半天关于如何设置该死的下划线......
我现在自己找到了.. 很高兴能够与你们分享我的新知识。
$decoration 可以是这些
1 - 文本将为普通文本
2 - 下划线
3 - 上划线
4 - 删除线
此致,
Mark Paspirgilis
(PECL imagick 2, PECL imagick 3)
ImagickDraw::setTextDecoration — 指定装饰
此函数目前未记录;仅提供其参数列表。
指定在使用文本注释时要应用的装饰。
不返回值。
示例 #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();
}
?>
嗨,大家好。
我找了半天关于如何设置该死的下划线......
我现在自己找到了.. 很高兴能够与你们分享我的新知识。
$decoration 可以是这些
1 - 文本将为普通文本
2 - 下划线
3 - 上划线
4 - 删除线
此致,
Mark Paspirgilis