(PECL imagick 2, PECL imagick 3)
Imagick::transverseImage — Creates a horizontal mirror image
public Imagick::transverseImage ( ) : bool
Creates a horizontal mirror image by reflecting the pixels around the central y-axis while rotating them 270-degrees. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.
 Returns true on success. 
Example #1 Imagick::transverseImage()
<?php
function transverseImage($imagePath) {
    $imagick = new \Imagick(realpath($imagePath));
    $imagick->transverseImage();
    header("Content-Type: image/jpg");
    echo $imagick->getImageBlob();
}
?> 
    © 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
    https://www.php.net/manual/en/imagick.transverseimage.php