Dutch PHP Conference 2025 - Call For Papers

Imagick::flopImage

(PECL imagick 2, PECL imagick 3)

Imagick::flopImageCreates a horizontal mirror image

Опис

public Imagick::flopImage(): bool

Creates a horizontal mirror image by reflecting the pixels around the central y-axis.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Повертає true в разі успіху.

Помилки/виключення

Кидає ImagickException в разі помилки.

Приклади

Приклад #1 Imagick::flopImage()

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

?>

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top