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


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


Imagick::setSamplingFactors()函數是PHP中的內置函數,用於設置圖像采樣因子。

用法:

bool Imagick::setSamplingFactors( array $factors )

參數:該函數接受單個參數$factors,該參數保存一個包含采樣因子的關聯數組。


返回值:成功時此函數返回TRUE。

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

下麵給出的程序說明了PHP中的Imagick::setSamplingFactors()函數:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the Sampling factors 
$imagick->setSamplingFactors(array('6', '7', '8')); 
  
// Get the Sampling factors 
$samplingFactors = $imagick->getSamplingFactors(); 
print("<pre>".print_r($samplingFactors, true)."</pre>"); 
?>

輸出:

Array
(
    [0] => 6
    [1] => 7
    [2] => 8
)

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the format to jpg 
$imagick->setImageFormat('jpg'); 
  
// Set the sampling factors 
$imagick->setSamplingFactors(array('1x1', '2x2')); 
  
// Save the image 
$compressed = $imagick->getImageBlob(); 
  
// Create a new imagick object 
$reopen = new Imagick(); 
  
$reopen->readImageBlob($compressed); 
  
// Resize it to same size 
$reopen->resizeImage(667, 184, 0, 1); 
  
// Show the output 
header("Content-Type: image/jpg"); 
echo $reopen->getImageBlob(); 
?>

輸出:

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



相關用法


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