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


PHP imageaffinematrixget()用法及代碼示例


imageaffinematrixget()函數是PHP中的一個內置函數,用於獲取仿射變換矩陣。仿射是涉及矩陣的幾何變換運算,通常用於線性代數和計算機圖形學中。

用法:

array imageaffinematrixget( int $type, mixed $options )

參數:該函數接受上述和以下描述的兩個參數:


  • $type:它指定一個對應於IMG_AFFINE常數之一的整數。所有IMG_AFFINE常數的列表如下:
    • IMG_AFFINE_TRANSLATE(0)
    • IMG_AFFINE_SCALE(1)
    • IMG_AFFINE_ROTATE(2)
    • IMG_AFFINE_SHEAR_HORIZONTAL(3)
    • IMG_AFFINE_SHEAR_VERTICAL(4)
  • $options:它指定要轉換為array的選項,可以是array或float。

返回值:該函數將在失敗時重新運行仿射變換矩陣(具有鍵0到5和浮點值的數組)或FALSE。

下麵給出的程序說明了PHP中的imageaffinematrixget()函數:程序1(從數組創建):

<?php 
// Create an array 
$arr = array('x' => 5, 'y' => 8); 
  
// Get the image affine matrix 
$matrix = imageaffinematrixget(IMG_AFFINE_TRANSLATE, $arr); 
  
// Output the matrix 
print("<pre>".print_r($matrix, true)."</pre>"); 
?>

輸出:

Array
(
    [0] => 1
    [1] => 0
    [2] => 0
    [3] => 1
    [4] => 5
    [5] => 8
)

程序2(從一個角度創建):

<?php 
// Create an angle 
$angle = 300; 
  
// Get the image affine matrix 
$matrix = imageaffinematrixget(IMG_AFFINE_SHEAR_HORIZONTAL, $angle); 
  
// Output the matrix 
print("<pre>".print_r($matrix, true)."</pre>"); 
?>

輸出:

Array
(
    [0] => 1
    [1] => 0
    [2] => -1.7320508075689
    [3] => 1
    [4] => 0
    [5] => 0
)

參考: https://www.php.net/manual/en/function.imageaffinematrixget.php



相關用法


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