getQuantumDepth 的工作方式与其他 "深度" 函数和 getQuantumRange 函数非常相似。 与深度函数一样,它返回一个值,指示存储唯一颜色值的位数 - 16 位 = 2^16 个唯一颜色,即 65,535(计数从二进制中的 '0' 开始,而不是十进制中的 '1')。 与 getQuantumRange 函数一样,它返回一个包含两个值的数组,一个为长整数 ('quantumDepthLong'),另一个为字符串 ('quantumDepthLong')。 唯一的区别,除了变量类型外,是字符串版本在前面加了 'Q'。
以下是一些示例代码和结果,给定一个颜色为 BMP 文件的照片,大小为 600x450 像素...
<?php
$imagick_type = new Imagick();
$file_to_grab = "image_workshop_directory/test.bmp";
$file_handle_for_viewing_image_file = fopen($file_to_grab, 'a+');
$imagick_type->readImageFile($file_handle_for_viewing_image_file);
$imagick_type_quantum_depth = $imagick_type->getQuantumDepth();
print("<pre>");
print_r($imagick_type_quantum_depth);
print("</pre>");
?>
输出
数组
(
[quantumDepthLong] => 16
[quantumDepthString] => Q16
)