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);
?>
輸出:
程序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);
?>
輸出:
程序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);
?>
輸出:
相關文章:
參考: http://php.net/manual/en/function.imageflip.php
相關用法
- p5.js nfc()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfp()用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP tan( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
注:本文由純淨天空篩選整理自Vishal_Khoda大神的英文原創作品 PHP | imageflip() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。