Imagick::flipImage
垂直方向に反転した画像を作成する
説明
public bool Imagick::flipImage()
エラー / 例外
エラー時に ImagickException をスローします。
例
例1 Imagick::flipImage
<?php
function flipImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->flipImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>