PHP 8.5.0 Alpha 1 available for testing

Imagick::flipImage

(PECL imagick 2, PECL imagick 3)

Imagick::flipImageCrea una imagen por espejo vertical

Descripción

public Imagick::flipImage(): bool

Crea una imagen por espejo vertical, utilizando una simetría alrededor del eje de las abscisas.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve true en caso de éxito.

Errores/Excepciones

Lanza una excepción ImagickException si ocurre un error.

Ejemplos

Ejemplo #1 Ejemplo con Imagick::flipImage()

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

?>

Ver también

add a note

User Contributed Notes 2 notes

up
10
jeff at jeffharris dot us
11 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
-2
thenickdude
4 years ago
The horizontal equivalent to this function is called transverseImage()
To Top