📜  PHP | GmagickDraw setstrokewidth()函数

📅  最后修改于: 2022-05-13 01:56:21.050000             🧑  作者: Mango

PHP | GmagickDraw setstrokewidth()函数

GmagickDraw::setstrokewidth()函数是PHP中的一个内置函数,用于设置用于绘制对象轮廓的笔触宽度。

句法:

public GmagickDraw::setstrokewidth( $stroke_width ) : GmagickDraw

参数:此函数接受单个参数$stroke_width用于保存笔画宽度的值。它是一个浮点类型值。

返回值:此函数在成功时返回 GmagickDraw 对象。

下面的程序说明了PHP中的 GmagickDraw::setstrokewidth()函数:

方案一:

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 Gmagick Object
$gmagick = new \Gmagick ();
  
// Set the dimensions of image
$gmagick ->newImage(500, 500, 'White');
  
// Set the image format 
$gmagick ->setImageFormat("png");
  
// Draw the image 
$gmagick ->drawImage($draw);
  
header("Content-Type: image/png");
  
// Display the image
echo $gmagick ->getImageBlob();
?>

输出:
设置描边宽度

方案二:

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 Gmagick Object 
$gmagick = new \Gmagick ();
  
// Set the dimensions of image
$gmagick ->newImage(800, 500, 'White');
  
// Set the image format
$gmagick ->setImageFormat("png");
  
// Draw the image 
$gmagick ->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image 
echo $gmagick ->getImageBlob();
?>

输出:
设置描边宽度

参考: http: PHP。 PHP