Imagick::flipImage

(PECL imagick 2.0.0)

Imagick::flipImageCreates a vertical mirror image

说锟斤拷

Imagick::flipImage ( void ) : bool

Creates a vertical mirror image by reflecting the pixels around the central x-axis.

锟斤拷锟斤拷值

锟缴癸拷时锟斤拷锟斤拷 TRUE锟斤拷

锟斤拷锟斤拷锟届常

锟斤拷锟斤拷时锟阶筹拷 ImagickException锟斤拷

锟斤拷锟斤拷

Example #1 Imagick::flipImage()

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

?>