PHP 8.3.4 Released!

Imagick::flipImage

(PECL imagick 2, PECL imagick 3)

Imagick::flipImage垂直方向に反転した画像を作成する

説明

public Imagick::flipImage(): bool

中心の x 軸を基準してピクセルを反転させ、垂直方向のミラー画像を作成します。

パラメータ

この関数にはパラメータはありません。

戻り値

成功した場合に true を返します。

エラー / 例外

エラー時に ImagickException をスローします。

例1 Imagick::flipImage()

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

?>

参考

add a note

User Contributed Notes 2 notes

up
10
jeff at jeffharris dot us
10 years ago
To avoid the x-axis and y-axis discussion, flipping emulates a mirror at the bottom (or top) of the image.
ʇo ɐʌoıp ʇɥǝ x-ɐxıs ɐup ʎ-ɐxıs pısɔnssıou, ɟןıddıuƃ ǝɯnןɐʇǝs ɐ ɯıɹɹoɹ ɐʇ ʇɥǝ qoʇʇoɯ )oɹ ʇod( oɟ ʇɥǝ ıɯɐƃǝ˙
up
-2
thenickdude
2 years ago
The horizontal equivalent to this function is called transverseImage()
To Top