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


PHP Imagick getImageOrientation()用法及代碼示例


Imagick::getImageOrientation()函數是PHP中的一個內置函數,用於獲取圖像方向。

用法:

int Imagick::getImageOrientation( void )

參數:此函數不接受任何參數。


返回值:此函數返回一個整數值,其中包含ORIENTATION常量之一。

ORIENTATION常量列表如下:

  • imagick::ORIENTATION_UNDEFINED(0)
  • imagick::ORIENTATION_TOPLEFT(1)
  • imagick::ORIENTATION_TOPRIGHT(2)
  • imagick::ORIENTATION_BOTTOMRIGHT(3)
  • imagick::ORIENTATION_BOTTOMLEFT(4)
  • imagick::ORIENTATION_LEFTTOP(5)
  • imagick::ORIENTATION_RIGHTTOP(6)
  • imagick::ORIENTATION_RIGHTBOTTOM(7)
  • imagick::ORIENTATION_LEFTBOTTOM(8)

異常:該函數在錯誤時引發ImagickException。

以下示例程序旨在說明PHP中的Imagick::getImageOrientation()函數:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the Orientation 
$orientation = $imagick->getImageOrientation(); 
echo $orientation; 
?>

輸出:

 0 // Which corresponds to imagick::ORIENTATION_UNDEFINED.

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the Orientation 
$imagick->setImageOrientation(imagick::ORIENTATION_TOPRIGHT); 
  
// Get the Orientation 
$orientation = $imagick->getImageOrientation(); 
echo $orientation; 
?>

輸出:

2

參考: https://www.php.net/manual/en/imagick.getimageorientation.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick getImageOrientation() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。