PHP | Gmagick getsamplingfactors()函数
Gmagick::getsamplingfactors()函数是PHP中的一个内置函数,用于返回水平和垂直采样因子。采样因子用于压缩 JPG。如果未使用setsamplingfactors()函数设置此选项,则使用默认的 JPG 采样因子。
句法:
array Gmagick::getsamplingfactors( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含采样因子值的关联数组。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的Gmagick::getsamplingfactors()函数:
方案一:
getsamplingfactors();
print("".print_r($res, true)."
");
?>
输出:
Array // which is the default empty array
(
)
方案二:
setsamplingfactors(array(3, 4, 5));
// Get the image sampling factors
$res = $gmagick->getsamplingfactors();
print("".print_r($res, true)."
");
?>
输出:
Array
(
[0] => 3
[1] => 4
[2] => 5
)
参考: https://www. PHP.net/manual/en/gmagick.getsamplingfactors。 PHP