parent root
PHP: Imagick::flipImage - Manual

Imagick::flipImage

(PECL imagick 2.0.0)

Imagick::flipImageCreates a vertical mirror image

Description

Imagick::flipImage ( void ) : bool

Creates a vertical mirror image by reflecting the pixels around the central x-axis.

Return Values

Returns TRUE on success.

Errors/Exceptions

Throws ImagickException on error.

Examples

Example #1 Imagick::flipImage()

<?php
function flipImage($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->flipImage();
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>
add a noteadd a note

User Contributed Notes 2 notes

up
8
jeff at jeffharris dot us
5 years ago
To avoid the x-axis and y-axis discussion, flipping emulates a mirror at the bottom (or top) of the image.
ʇo ɐʌoıp ʇɥǝ x-ɐxıs ɐup ʎ-ɐxıs pısɔnssıou, ɟןıddıuƃ ǝɯnןɐʇǝs ɐ ɯıɹɹoɹ ɐʇ ʇɥǝ qoʇʇoɯ )oɹ ʇod( oɟ ʇɥǝ ıɯɐƃǝ˙
up
-8
Lee
7 years ago
They mean, "Creates a horizontal mirror image by reflecting the pixels around the central y-axis."
To Top
parent root