Open In App

PHP | Imagick flipImage() Function

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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
<?php 
// require_once('path/vendor/autoload.php'); 
 
// Create a new Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-14.png');

// 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

Next Article

Similar Reads