當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。