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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。