(PECL imagick 2, PECL imagick 3)
Imagick::transposeImage — Creates a vertical mirror image
Creates a vertical mirror image by reflecting the pixels around the central x-axis while rotating them 90-degrees. Questo metodo è disponibile se Imagick è stato compilato con ImageMagick versione 6.2.9 o successive.
Questa funzione non contiene parametri.
Restituisce true
in caso di successo.
Example #1 Imagick::transposeImage()
<?php
function transposeImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->transposeImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>