PHP 8.6.0 Beta 1 is available for testing

Imagick::transverseImage

(PECL imagick 2, PECL imagick 3)

Imagick::transverseImageCreates a horizontal mirror image

Description

public function Imagick::transverseImage(): bool

Creates a horizontal mirror image by reflecting the pixels around the central y-axis while rotating them 270-degrees. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.

Parameters

This function has no parameters.

Return Values

Returns true on success.

Examples

Example #1 Imagick::transverseImage()

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

See Also

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes

There are no user contributed notes for this page.

AltStyle によって変換されたページ (->オリジナル) /