当前位置: 首页>>代码示例>>PHP>>正文


PHP ImagickDraw::setFontStyle方法代码示例

本文整理汇总了PHP中ImagickDraw::setFontStyle方法的典型用法代码示例。如果您正苦于以下问题:PHP ImagickDraw::setFontStyle方法的具体用法?PHP ImagickDraw::setFontStyle怎么用?PHP ImagickDraw::setFontStyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ImagickDraw的用法示例。


在下文中一共展示了ImagickDraw::setFontStyle方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: box

 /**
  * (non-PHPdoc)
  * @see Imagine\Image\AbstractFont::box()
  */
 public function box($string, $angle = 0)
 {
     $text = new \ImagickDraw();
     $text->setFont($this->file);
     $text->setFontSize($this->size);
     $text->setFontStyle(\Imagick::STYLE_OBLIQUE);
     $info = $this->imagick->queryFontMetrics($text, $string);
     $box = new Box($info['textWidth'], $info['textHeight']);
     return $box;
 }
开发者ID:nicodmf,项目名称:Imagine,代码行数:14,代码来源:Font.php

示例2: ImagickDraw

<?php

$draw = new ImagickDraw();
$font_path = __DIR__ . '/php_imagick_tests/anonymous_pro_minus.ttf';
$draw->setFont($font_path);
var_dump($draw->getFont() === $font_path);
try {
    $draw->setFont(">_<");
} catch (Exception $ex) {
    var_dump("setFont");
}
$draw->setFontSize(12);
var_dump($draw->getFontSize());
$draw->setFontStretch(Imagick::STRETCH_SEMIEXPANDED);
var_dump($draw->getFontStretch() === Imagick::STRETCH_SEMIEXPANDED);
$draw->setFontStyle(Imagick::STYLE_ITALIC);
var_dump($draw->getFontStyle() === Imagick::STYLE_ITALIC);
$draw->setFontWeight(500);
var_dump($draw->getFontWeight());
try {
    $draw->setFontWeight(1000);
} catch (ImagickDrawException $ex) {
    var_dump($ex->getMessage());
}
开发者ID:badlamer,项目名称:hhvm,代码行数:24,代码来源:draw_font.php

示例3: setFontStyle

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();
}
开发者ID:sdmmember,项目名称:Imagick-demos,代码行数:20,代码来源:functions.php


注:本文中的ImagickDraw::setFontStyle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。