Thursday, July 4, 2024
HomeLanguagesPhpPHP | Imagick averageImages() Function

PHP | Imagick averageImages() Function

The Imagick::averageImages() function is an inbuilt function in PHP which is used to create an average of two or more images after image processing. It is well defined in PECL imagick 2.0.0 version. This function has been depreciated in further versions of Imagick hence it is replaced by Imagick::mergeImageLayers() in PECL imagick 2.1.0 version. Syntax:

Imagick Imagick::averageImages( void )

Return Value: This function returns a new imagick object on success. Errors/Exceptions: It throws ImagickException while error occurred. Below program illustrates the Imagick::averageImages() function in PHP: Program: 

php




<?php
 
// Store the path of an image into variable
$imagePath =
"https://media.neveropen.co.za/wp-content/uploads/20190912230402/hexgon_compositeImage.png";
 
// Create a new Imagick object
$imagick = new \Imagick($imagePath);
 
// Create a new ImagickDraw object
$draw = new \ImagickDraw();
 
// Draw an image and set its font size
$draw->setFontSize(35);
 
// Set the color of text
$fillcolor = new \ImagickPixel("red");
 
// Set the fill color
$draw->setFillColor($fillcolor);
 
// Set the gravity
$draw->setGravity(Imagick::GRAVITY_CENTER);
 
// Annotate the text "neveropen" to the image
$imagick->annotateImage( $draw, 0, 0, 0, "neveropen");
 
// Assign thresholdcolor to the image
$thresholdColor = "rgb(255, 0, 0)";
 
$imagick->blackthresholdimage($thresholdColor);
 
// Flop the image
$imagick->flopImage();
 
// Turn image to oil paint image
$imagick->oilPaintImage(1);
$imagick->resetIterator();
 
// Merging all image layers and flattened
$imagick->mergeImageLayers(Imagick::LAYERMETHOD_FLATTEN);
 
// It works in PECL imagick 2.0.0 version,
// comment it when higher version.
$imagick->averageImages();
 
header("Content-Type: image/png");
header("Cache-Control: no-store, no-cache"); 
 
// Downloading output image of
// Imagick::averageImage() function
header('Content-Disposition: attachment; filename="average.png"');
 
echo $imagick->getImageBlob();
 
?>


Output: Reference: https://www.php.net/manual/en/imagick.averageimages.php

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments