They mean, "Creates a vertical mirror image by reflecting the pixels around the central x-axis."
(PECL imagick 2.0.0)
Imagick::flopImage — Creates a horizontal mirror image
Creates a horizontal mirror image by reflecting the pixels around the central y-axis.
성공시에 TRUE
를 반환합니다.
오류시에 ImagickException이 발생합니다.
Example #1 Imagick::flopImage()
<?php
function flopImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->flopImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>