當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ImagickDraw::setfont方法代碼示例

本文整理匯總了PHP中ImagickDraw::setfont方法的典型用法代碼示例。如果您正苦於以下問題:PHP ImagickDraw::setfont方法的具體用法?PHP ImagickDraw::setfont怎麽用?PHP ImagickDraw::setfont使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ImagickDraw的用法示例。


在下文中一共展示了ImagickDraw::setfont方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getDrawForText

 /**
  * 獲取文字的描繪對象
  * @param string $font 字體名稱或字體路徑
  * @param integer $size 字體大小
  * @param string | ImagickPixel $color 字顏色
  * @param float $opacity 文字的透明度,取值範圍0(全透明)-1(不透明)
  * @param string | ImagickPixel $underColor 字的背景顏色
  * @return ImagickDraw | false
  */
 public function getDrawForText($font = null, $size = 8, $color = 'transparent', $opacity = 0.58, $underColor = null)
 {
     $draw = new ImagickDraw();
     // $draw->setGravity(Imagick::GRAVITY_CENTER);
     // 特別注意這裏了,如果這裏設置了文字水印的位置的話,那麽在其寫入別到文件時就會起作用,且其他設置的坐標都沒有用
     if ($font !== null) {
         if (is_file($font)) {
             $draw->setfont($font);
         } else {
             $this->_error = '字體文件不存在';
             return false;
         }
     }
     $draw->setfontsize($size);
     $draw->setFillColor($color);
     $draw->setfillopacity($opacity);
     // 貌似和這個是一樣的: $draw->setFillAlpha(0.5);
     if ($underColor !== null) {
         $draw->settextundercolor($underColor);
     }
     // $draw->settextalignment(2); //文字對齊方式,2為居中
     return $draw;
 }
開發者ID:OuHaixiong,項目名稱:img,代碼行數:32,代碼來源:Imagick.php

示例2: addWaterText

 /**
  * 
  * 文字水印
  * @param unknown_type $data
  */
 public function addWaterText($data)
 {
     $draw = new ImagickDraw();
     $this->ImagickPixel = new ImagickPixel();
     $draw->clear();
     $draw->setfont($data['font']);
     $draw->setfontsize($data['size']);
     $this->ImagickPixel->setcolor($data['color']);
     $draw->setfillcolor($data['color']);
     $draw->setfillalpha($data['alpha']);
     $draw->settextalignment(imagick::GRAVITY_NORTHWEST);
     //左對齊
     $draw->annotation($data['pos_x'], $data['pos_y'], $data['literal']);
     $this->srcImg_source->drawimage($draw);
     $draw->destroy();
     return $this->srcImg_source;
 }
開發者ID:h3len,項目名稱:Project,代碼行數:22,代碼來源:imagick.class.php


注:本文中的ImagickDraw::setfont方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。