PHP | Imagick transposeImage() Function Last Updated : 26 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The Imagick::transposeImage() function is an inbuilt function in PHP which is used to create a vertical mirror image. This function creates an image by reflecting the pixels around the central x-axis while rotating them 90-degrees. Syntax: bool Imagick::transposeImage( void ) Parameters: This function does not accepts any parameter. Return Value: This function returns True on success. Original Image: Below program illustrate Imagick::transposeImage() function in PHP: Program: php <?php // require_once('path/vendor/autoload.php'); // Create an imagick object $image = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Imagick function to transpose Image $image->transposeImage(); header("Content-Type: image/jpg"); // Display the image echo $image->getImageBlob(); ?> Output: Related Articles: PHP | Imagick addNoiseImage() Function PHP | Imagick autoLevelImage() Function Reference: http://php.net/manual/en/imagick.transposeimage.php Comment More infoAdvertise with us Next Article PHP | Imagick transposeImage() Function S sarthak_ishu11 Follow Improve Article Tags : Misc Web Technologies PHP Image-Processing PHP-Imagick +1 More Practice Tags : Misc Similar Reads PHP | Imagick transverseImage() Function The Imagick::transverseImage() function is an inbuilt function in PHP which is used to create a horizontal mirror image by reflecting the pixels around the y-axis. This function rotates the image by 270-degrees. Syntax: bool Imagick::transverseImage( void ) Parameters: This function does not accept 1 min read PHP | Imagick transformImage() Function The Imagick::transformImage() function is an inbuilt function in PHP which is used to crop size and the image geometry. Syntax: Imagick Imagick::transformImage( $crop, $geometry ) Parameters: This function accepts two parameters as mentioned above and described below: $crop: This parameter is used t 1 min read PHP | Imagick stripImage() Function The Imagick::stripImage() function is an inbuilt function in PHP which is used to strip all profiles and comments from an image. Syntax: bool Imagick::stripImage( void ) Parameters:This function doesnât accepts any parameter. Return Value: This function returns TRUE on success. Exceptions: This func 1 min read PHP | Imagick sampleImage() Function The Imagick::sampleImage() function is an inbuilt function in PHP which is used to scale an image to the desired dimensions with pixel sampling.This method does not introduce any additional color into the scaled image like other resizing methods. Syntax: bool Imagick::sampleImage( int $rows, int $co 1 min read PHP | Imagick resizeImage() Function The Imagick::resizeImage() function is an inbuilt function in PHP which is used to scale an image to the desired dimensions. Syntax: bool Imagick::resizeImage( int $columns, int $rows, int $filter, float $blur, bool $best_fit = false, bool $legacy = false ) Parameters: This function accepts six para 2 min read Like