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


PHP ImagickDraw setStrokeWidth()用法及代碼示例


ImagickDraw::setStrokeWidth()函數是PHP中的內置函數,用於設置用於繪製對象輪廓的筆觸寬度。

用法:

bool ImagickDraw::setStrokeWidth( $stroke_width )

參數:該函數接受單個參數$stroke_width,該參數用於保存筆劃寬度的值。它是一個浮點類型值。


返回值:此函數不返回任何值。

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

程序1:

<?php 
  
// Create new Imagick object  
$draw = new \ImagickDraw(); 
  
// Set the stroke Color 
$draw->setStrokeColor('Red'); 
  
// Set the image filled color  
$draw->setFillColor('Green'); 
  
// Set the Stroke Width 
$draw->setStrokeWidth(7); 
  
// Draw the Circle 
$draw->circle(250, 250, 100, 150); 
  
// Create new Imagick Object 
$imagick = new \Imagick(); 
  
// Set the dimensions of image 
$imagick->newImage(500, 500, 'White'); 
  
// Set the image format  
$imagick->setImageFormat("png"); 
  
// Draw the image  
$imagick->drawImage($draw); 
  
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setStrokeWidth

程序2:

<?php 
// Create new Imagick Object  
$draw = new ImagickDraw(); 
  
// Set the stroke color 
$draw->setStrokeColor('black'); 
  
// Set the image filled color  
$draw->setFillColor('lightgreen'); 
  
// Set the Stroke Width 
$draw->setStrokeWidth(0); 
  
// Draw the rectangle 
$draw->rectangle(100, 100, 300, 300); 
  
// Set Stroke Width 
$draw->setStrokeWidth(15); 
  
// Draw the rectangle 
$draw->rectangle(400, 100, 600, 300); 
  
// Create new Imagick Object  
$imagick = new \Imagick(); 
  
// Set the dimensions of image 
$imagick->newImage(800, 500, 'White'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image  
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image  
echo $imagick->getImageBlob(); 
?>

輸出:
setStrokeWidth

參考: http://php.net/manual/en/imagickdraw.setstrokewidth.php



相關用法


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