当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。