Imagick::flipImage

(PECL imagick 2, PECL imagick 3)

Imagick::flipImageCreates a vertical mirror image

Descrição

publicImagick::flipImage(): bool

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

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna true em caso de sucesso.

Erros/Exceções

Lança uma exceção ImagickException em caso de erro.

Exemplos

Exemplo #1 Imagick::flipImage()

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

?>

Veja Também

To Top