ImagickDraw::setFontStyle

(PECL imagick 2, PECL imagick 3)

ImagickDraw::setFontStyle设置用于文本注释的字体样式

描述

public ImagickDraw::setFontStyle(int $style): bool
警告

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

设置用于文本注释的字体样式。AnyStyle 枚举充当通配符“不关心”选项。

参数

style

其中一个 STYLE 常量 (imagick::STYLE_*)。

返回值

没有返回值。

示例

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

<?php
function setFontStyle($fillColor, $strokeColor, $backgroundColor) {
$draw = new \ImagickDraw();
$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);
$draw->setStrokeWidth(1);
$draw->setFontSize(36);
$draw->setFontStyle(\Imagick::STYLE_NORMAL);
$draw->annotation(50, 50, "Lorem Ipsum!");

$draw->setFontStyle(\Imagick::STYLE_ITALIC);
$draw->annotation(50, 100, "Lorem Ipsum!");

$draw->setFontStyle(\Imagick::STYLE_OBLIQUE);
$draw->annotation(50, 150, "Lorem Ipsum!");

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

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

?>

添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top