📜  PHP | imagickdraw setStrokeWidth()函数

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

PHP | imagickdraw setStrokeWidth()函数

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

句法:

bool ImagickDraw::setStrokeWidth( $stroke_width )

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

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

下面的程序说明了PHP中的ImagickDraw::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 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();
?>

输出:
设置描边宽度

方案二:

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();
?>

输出:
设置描边宽度

参考: http: PHP。 PHP