当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imageflip()用法及代码示例


imageflip()函数是PHP中的内置函数,用于使用给定模式水平,垂直或水平和垂直翻转图像。

用法:

bool imageflip( $image, $mode )

参数:该函数接受上述和以下描述的两个参数:


  • $image:imagecreatetruecolor()函数用于创建给定尺寸的空白图像。
  • $mode:此参数用于保持图像的翻转模式。这可以是IMG_FLIP_ *常量之一:
    • IMG_FLIP_HORIZONTAL -水平翻转图像。
    • IMG_FLIP_VERTICAL -垂直翻转图像。
    • IMG_FLIP_BOTH -水平和垂直翻转图像。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

以下示例程序旨在说明PHP中的imageflip()函数。

注意:下面给出的图像在以下程序中使用。

程序1:

<?php 
  
// Assign image file in variable. 
$image_name = 'geeks.png'; 
   
// Load image file 
$image = imagecreatefrompng($image_name); 
   
// Flip the image vertically 
imageflip($image, IMG_FLIP_VERTICAL); 
  
// Content type 
header('Content-type: image/png'); 
   
// Output 
imagejpeg($image); 
?>

输出:
image flip

程序2:

<?php 
  
// Assign image file to variable 
$image_name = 'geeks.png'; 
   
// Load image file 
$image = imagecreatefrompng($image_name); 
   
// Flip the image horizontally 
imageflip($image, IMG_FLIP_HORIZONTAL); 
  
// Content type 
header('Content-type: image/png'); 
   
// Output 
imagejpeg($image); 
?>

输出:
flip image

程序3:

<?php 
  
// Assign image file to variable 
$image_name = 'geeks.png'; 
   
// Load image file 
$image = imagecreatefrompng($image_name); 
   
// Flip the image file both horizontally 
// and vertically. 
imageflip($image, IMG_FLIP_BOTH); 
  
// Content type 
header('Content-type: image/png'); 
   
// Output 
imagejpeg($image); 
?>

输出:
image flip

相关文章:

参考: http://php.net/manual/en/function.imageflip.php



相关用法


注:本文由纯净天空筛选整理自Vishal_Khoda大神的英文原创作品 PHP | imageflip() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。