They mean, "Creates a vertical mirror image by reflecting the pixels around the central x-axis."
(PECL imagick 2, PECL imagick 3)
Imagick::flopImage — Crée une image par miroir horizontal
Crée une image par miroir horizontal, à l'aide d'une symétrie autour de l'axe des ordonnées.
Cette fonction ne contient aucun paramètre.
Retourne true
en cas de succès.
Lance une exception ImagickException si une erreur survient.
Exemple #1 Exemple avec Imagick::flopImage()
<?php
function flopImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->flopImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>