Imagick::flopImage
(PECL imagick 2, PECL imagick 3)
Imagick::flopImage — Creates a horizontal mirror image
Beschreibung
Creates a horizontal mirror image by reflecting the pixels around the central y-axis.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Liefert true
bei Erfolg.
Fehler/Exceptions
Wirft ImagickException bei Fehlern.
Beispiele
Beispiel #1 Imagick::flopImage()
<?php
function flopImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->flopImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
Siehe auch
- Imagick::flipimage() - Creates a vertical mirror image