PHP 8.6.0 Beta 1 is available for testing

Imagick::transposeImage

(PECL imagick 2, PECL imagick 3)

Imagick::transposeImageCreates a vertical mirror image

Description

public function Imagick::transposeImage(): bool

Creates a vertical mirror image by reflecting the pixels around the central x-axis while rotating them 90-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::transposeImage()

<?php
function transposeImage($imagePath) {
 $imagick = new \Imagick(realpath($imagePath));
 $imagick->transposeImage();
 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 によって変換されたページ (->オリジナル) /