Imagick::transposeImage

(PECL imagick 2, PECL imagick 3)

Imagick::transposeImageCreates a vertical mirror image

Descrierea

public Imagick::transposeImage ( ) : bool

Creates a vertical mirror image by reflecting the pixels around the central x-axis while rotating them 90-degrees. Această metodă este disponibilă dacă Imagick a fost compilat cu ImageMagick de versiunea 6.2.9 sau ulterior.

Valorile întoarse

Întoarce true în caz de succes.

A se vedea și

Exemple

Example #1 Imagick::transposeImage()

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

?>

add a note add a note

User Contributed Notes

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