当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP GmagickDraw setfillopacity()用法及代码示例


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

用法:

public GmagickDraw::setfillopacity( $fill_opacity ) : GmagickDraw

参数:该函数接受单个参数$fill_opacity,该参数用于将不透明度的值保留为float类型。


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

以下示例程序旨在说明PHP中的GmagickDraw::setfillopacity()函数:

程序1:

<?php 
  
// require_once('vendor/autoload.php'); 
   
// Create GmagickDraw object 
$draw = new \GmagickDraw (); 
  
// Set the strike color 
$draw->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(); 
   
?>

输出:
setFillOpacity

程序2:

<?php 
  
// require_once('path/vendor/autoload.php'); 
   
// Create new GmagickDraw object 
$draw = new \GmagickDraw (); 
   
// Set the stroke color 
$strokeColor = new \GmagickPixel('Green'); 
  
// Set the filled color 
$fillColor = new \GmagickPixel('Red'); 
  
// Set the stroke color 
$draw->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(); 
?>

输出:
setFillOpacity

参考: http://php.net/manual/en/gmagickdraw.setfillopacity.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | GmagickDraw setfillopacity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。