Wednesday, July 3, 2024
HomeLanguagesPhpPHP | Imagick flipImage() Function

PHP | Imagick flipImage() Function

The Imagick::flipImage() function is an inbuilt function in PHP which is used to create an image generated by a mirror-reversal of an original image across a vertical mirror.

Syntax:

bool Imagick::flipImage( void )

Parameters: This function does not accepts any parameters.

Return Value: This function returns True on success.

Errors/Exceptions: It throws an ImagickException on error.

Original Image:

Below program illustrates the Imagick::flipImage() function in PHP:

Program:




<?php 
// require_once('path/vendor/autoload.php'); 
   
// Create a new Imagick Object
$image = new Imagick(
  
// Function to flip an Image 
$image->flipImage();
   
header('Content-type: image/png');
  
// Display the output image
echo $image;
?>


Output:

Related Articles:

Reference: http://php.net/manual/en/imagick.flipimage.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