Imagick::flipImage

(PECL imagick 2, PECL imagick 3)

Imagick::flipImageCrée une image par miroir vertical

Description

public Imagick::flipImage(): bool

Crée une image par miroir vertical, à l'aide d'une symétrie autour de l'axe des abscisses.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne true en cas de succès.

Erreurs / Exceptions

Lance une exception ImagickException si une erreur survient.

Exemples

Exemple #1 Exemple avec Imagick::flipImage()

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

?>

add a note add a note

User Contributed Notes 3 notes

up
10
jeff at jeffharris dot us
10 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
0
thenickdude
3 years ago
The horizontal equivalent to this function is called transverseImage()
up
-12
Lee
11 years ago
They mean, "Creates a horizontal mirror image by reflecting the pixels around the central y-axis."
To Top