Imagick::flipImage()函數是PHP中的一個內置函數,用於創建一個圖像,該圖像由mirror-reversal生成的原始圖像橫跨垂直鏡。
用法:
bool Imagick::flipImage( void )
參數:該函數不接受任何參數。
返回值:成功時此函數返回True。
錯誤/異常:錯誤時引發ImagickException。
原始圖片:
以下示例程序旨在說明PHP中的Imagick::flipImage()函數:
程序:
<?php
// require_once('path/vendor/autoload.php');
// Create a new Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-14.png');
// Function to flip an Image
$image->flipImage();
header('Content-type: image/png');
// Display the output image
echo $image;
?>
輸出:
相關文章:
參考: http://php.net/manual/en/imagick.flipimage.php
相關用法
- PHP Gmagick flipimage()用法及代碼示例
- PHP Imagick getImageResolution()用法及代碼示例
- PHP Imagick getFormat()用法及代碼示例
- PHP Imagick setImageResolution()用法及代碼示例
- PHP Imagick getImageOrientation()用法及代碼示例
- PHP Imagick getGravity()用法及代碼示例
- PHP Imagick getImageSize()用法及代碼示例
- PHP Imagick getImageTotalInkDensity()用法及代碼示例
- PHP Imagick setImageOrientation()用法及代碼示例
- PHP Imagick getImageType()用法及代碼示例
- PHP Imagick getImageInterations()用法及代碼示例
- PHP Imagick setImageIterations()用法及代碼示例
- PHP Imagick blueShiftImage()用法及代碼示例
- PHP Imagick getImageLength()用法及代碼示例
- PHP Imagick setGravity()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick flipImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。