PHP 7.0.6 Released

Imagick::transverseImage

(PECL imagick 2.0.0)

Imagick::transverseImageCreates a horizontal mirror image

Description

bool Imagick::transverseImage ( void )

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.

Return Values

Returns TRUE on success.

See Also

Examples

Example #1 Imagick::transverseImage()

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

?>

User Contributed Notes

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