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


PHP Imagick evaluateImage()用法及代码示例


Imagick::evaluateImage()函数是PHP中的内置函数,用于将表达式应用于图像。它可以将任何算术,逻辑或关系表达式应用于图像并评估其结果。该操作员具有许多用途,从改变图像的亮度,即使图像变亮或变暗,或改变图像的对比度或产生图像的取反。

用法:

bool Imagick::evaluateImage( $evaluation_op, $constant, $channel = Imagick::CHANNEL_DEFAULT )

参数:此函数接受上述和以下所述的三个参数:


  • $evaluation_op:它包含评估运算符,如加,减,除,mod等。
  • $constant:它持有操作符的价值,并将与评估一起进行。
  • $channel:它提供适合所需通道模式的任何通道常数。

返回值:如果函数成功执行,则返回布尔值true,否则返回false。

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

程序1:

<?php   
     
// Create an Imagick object   
$imagick = new Imagick(   
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');   
  
// Declare and initialize the value of variable 
$evaluation_op = Imagick::EVALUATE_DIVIDE; 
$constant = 3; 
$channel = Imagick::CHANNEL_ALPHA; 
  
// Use evaluateImage function   
$imagick->evaluateImage($evaluation_op, $constant, $channel);   
     
header("Content-Type: image/jpg");   
     
// Display the output image   
echo $imagick->getImageBlob();   
    
?>  

输出:

程序2:

<?php 
   
// Creating new Imagick object 
 $image = new Imagick(__DIR__ . '\sample.png'); 
   
// Set the Alpha Channel to Opaque to facilitate Opaque operation 
$image->setImageAlphaChannel(Imagick::ALPHACHANNEL_OPAQUE); 
   
// Set the values of parameters  
$evaluation_op = Imagick::EVALUATE_DIVIDE; 
$constant = 3; 
$channel = Imagick::CHANNEL_ALPHA; 
   
// Calling the function with the parameters 
$image->evaluateImage( $evaluation_op, $constant, $channel ); 
   
header('Content-type: image/jpeg');  
   
// Writing the new image to specified directory 
$image->writeImage(__DIR__ . '\sample_with_33perc_opacity.png'); 
   
?>

输出:

程序3:

<?php 
  
// Function definition 
function Evaluate_Image( $image, $evaluation_op, $constant, $channel ) 
{ 
    $image->evaluateImage( $evaluation_op, $constant, $channel ); 
      
    return $image; 
} 
   
// Set values of the parameters  
$final_image = Evaluate_Image(new Imagick(__DIR__ . '\sample.png'), 
        Imagick::EVALUATE_MEAN, 3, Imagick::CHANNEL_BLUE); 
  
header('Content-type: image/jpeg'); 
  
// Display the output image   
echo $final_image->getImageBlob();   
   
?>

输出:

参考: https://www.php.net/manual/en/imagick.evaluateimage.php
如果您发现问题或想添加更多信息,请发表评论。编码愉快!!



相关用法


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