📜  PHP | GmagickDraw setfillopacity()函数

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

PHP | GmagickDraw setfillopacity()函数

GmagickDraw ::setfillopacity()函数是PHP中的一个内置函数,用于设置绘图图像的不透明度。它在使用填充颜色或填充纹理绘制图像时使用。

句法:

public GmagickDraw::setfillopacity( $fill_opacity ) : GmagickDraw

参数:此函数接受单个参数$fill_opacity ,用于将不透明度的值保存为浮点类型。

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

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

方案一:

setStrokeColor('Green');
   
// Use setFillColor() Function
$draw->setFillColor('Red');
   
// Use setFillOpacity() Function 
$draw->setFillOpacity(0.2);
   
$draw->setStrokeWidth(7);
   
// Create rectangle
$draw->rectangle(40, 30, 200, 260);
   
// Use setFillColor() Function
$draw->setFillColor('Red');
  
// Create rectangle of given size
$draw->rectangle(260, 30, 400, 260);
   
// Create an Gmagick object
$image = new \Gmagick ();
      
$image->newImage(500, 300, 'white');
  
// Set the image format
$image->setImageFormat("png");
   
// Render the draw commands in the 
// GmagickDraw object into the image.
$image->drawImage($draw);
   
// Send the image to the browser
header("Content-Type: image/png");
echo $image->getImageBlob();
   
?>

输出:
设置填充不透明度

方案二:

setStrokeColor('Green');
  
// Set the filled color
$draw->setFillColor('Red');
       
// Use setFillOpacity() Function
$draw->setFillOpacity(0.5);
  
// Set the stroke width
$draw->setStrokeWidth(2);
   
$smoothPointsSet = [ [
          ['x' => 10.0 * 5, 'y' => 10.0 * 5],
          ['x' => 30.0 * 5, 'y' => 90.0 * 5],
          ['x' => 25.0 * 5, 'y' => 10.0 * 5],
          ['x' => 50.0 * 5, 'y' => 50.0 * 5], ] ];
   
foreach ($smoothPointsSet as $points) {
    $draw->bezier($points);
}
  
// Create an image object
$gmagick = new \Gmagick ();
  
$gmagick->newImage(300, 300, 'White');
  
// Set the image format
$gmagick->setImageFormat("png");
   
// Render the draw commands in the
// GmagickDraw object into the image.
$gmagick->drawImage($draw);
   
// Send the image to the browser
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:
设置填充不透明度

参考: http: PHP。 PHP