當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。