Friday, October 17, 2025
HomeLanguagesPHP | 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

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS