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


PHP imagesetinterpolation()用法及代碼示例


imagesetinterpolation()函數是PHP中的內置函數,用於設置插值方法,設置插值方法會影響各種函數(例如imagerotate()函數)的呈現。

用法:

bool imagesetinterpolation( resource $image, int $method )

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


  • $image:它指定要處理的圖像資源。
  • $method:它指定要應用的方法。
    可用的方法列表如下:
    • IMG_BELL:貝爾過濾器。
    • IMG_BESSEL:貝塞爾過濾器。
    • IMG_BICUBIC:雙三次插值。
    • IMG_BICUBIC_FIXED:雙三次插值的固定點實現。
    • IMG_BILINEAR_FIXED:雙線性插值的定點實現(默認(同樣在圖像創建時))。
    • IMG_BLACKMAN:Blackman窗口函數。
    • IMG_BOX:框模糊濾鏡。
    • IMG_BSPLINE:樣條插值。
    • IMG_CATMULLROM:三次Hermite樣條插值。
    • IMG_GAUSSIAN:高斯函數。
    • IMG_GENERALIZED_CUBIC:廣義三次樣條形分形插值。
    • IMG_HERMITE:Hermite插值。
    • IMG_HAMMING:漢明濾鏡。
    • IMG_HANNING:漢寧過濾器。
    • IMG_MITCHELL:Mitchell濾波器。
    • IMG_POWER:功率插值。
    • IMG_QUADRATIC:逆二次插值。
    • IMG_SINC:Sinc函數。
    • IMG_NEAREST_NEIGHBOUR:最近的鄰居插值。
    • IMG_WEIGHTED4:加權過濾器。
    • IMG_TRIANGLE:三角形插值。

返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。

下麵的示例說明了PHP中的imagesetinterpolation()函數:

範例1:

<?php 
  
// Load the png image 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the interpolation 
imagesetinterpolation($image, IMG_BLACKMAN); 
  
// Rotate the image 
$black = imagecolorallocate($image, 0, 0, 0); 
$rotated = imagerotate($image, 20, $black); 
  
// Output image to the browser 
header('Content-type:image/png'); 
imagepng($rotated); 
?>

輸出:

範例2:

<?php 
  
// Load the png image 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the interpolation 
imagesetinterpolation($image, IMG_POWER); 
  
// Rotate the image 
$black = imagecolorallocate($image, 0, 0, 0); 
$rotated = imagerotate($image, 20, $black); 
  
// Output image to the browser 
header('Content-type:image/png'); 
imagepng($rotated); 
?>

輸出:

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



相關用法


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