©
This document uses PHP Chinese website manual Release
(PECL imagick 2.0.0)
Imagick::transverseImage — Creates a horizontal mirror image
Creates a horizontal mirror image by reflecting the pixels around the central y-axis while rotating them 270-degrees. 此方法在Imagick基于ImageMagick 6.2.9以上版本编译时可用。
成功时返回 TRUE
。
Example #1 Imagick::transverseImage()
<?php
function transverseImage ( $imagePath ) {
$imagick = new \ Imagick ( realpath ( $imagePath ));
$imagick -> transverseImage ();
header ( "Content-Type: image/jpg" );
echo $imagick -> getImageBlob ();
}
?>