當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP GmagickDraw getstrokewidth()用法及代碼示例


Gmagick::getstrokewidth()函數是PHP中的內置函數,用於返回用於繪製對象輪廓的筆觸寬度。

用法:

public GmagickDraw::getstrokewidth( void )


參數:該函數不接受任何參數。


返回值:此函數返回一個描述描邊寬度的雙精度型。

錯誤/異常:此函數在出錯時引發GmagickException。

以下示例程序旨在說明PHP中的Gmagick::getstrokewidth()函數:

程序:

<?php  
      
// Create a GmagickDraw object  
$draw = new GmagickDraw();  
     
// Create GmagickPixel object  
$strokeColor = new GmagickPixel('Red');  
  
$fillColor = new GmagickPixel('Green');  
     
// Set the color, opacity of image  
$draw->setStrokeOpacity(1);  
$draw->setStrokeColor('Red');  
$draw->setFillColor('Green');  
     
// Set the width and height of image  
$draw->setStrokeWidth(7);  
$draw->setFontSize(72);  
      
// Function to draw circle   
$draw->circle(250, 250, 100, 150);  
    
$gmagick = new Gmagick();  
$gmagick->newImage(500, 500, 'White');  
$gmagick->setImageFormat("png");  
$gmagick->drawImage($draw);  
   
// Using getstrokewidth() function 
   
print_r($draw->getstrokewidth()); 
  
?> 

輸出:

7

參考: http://php.net/manual/en/gmagickdraw.getstrokewidth.php



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | GmagickDraw getstrokewidth() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。