They mean, "Creates a vertical mirror image by reflecting the pixels around the central x-axis."
(PECL imagick 2, PECL imagick 3)
Imagick::flopImage — Creates a vertical mirror image
Creates a vertical mirror image by reflecting the pixels around the central y-axis.
Întoarce true
în caz de succes.
Emite ImagickException în caz de eroare.
Example #1 Imagick::flopImage()
<?php
function flopImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->flopImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>