(PECL imagick 2, PECL imagick 3)
Imagick::transposeImage — Creates a vertical mirror image
public Imagick::transposeImage ( ) : bool
Creates a vertical mirror image by reflecting the pixels around the central x-axis while rotating them 90-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::transposeImage()
<?php
function transposeImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->transposeImage();
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.transposeimage.php