PHP |想象一下 pingImageFile()函数
Imagick::pingImageFile()函数是PHP中的一个内置函数,用于以轻量级的方式返回图像属性。此函数用于查找有关图像的元数据,而无需将整个图像读取到内存中。
句法:
bool Imagick::pingImageFile( $filehandle, $fileName )
参数:该函数接受上面提到的两个参数,如下所述:
- $filehandle:必填参数。它打开图像的文件句柄。
- $fileName:可选参数。它保存此图像的文件名。
返回值:成功时返回 True。
下面的程序说明了PHP中的 Imagick::pingImageFile()函数:
程序:
php
pingImageFile($fp);
// Getting height of the image
echo "The Height of the image is: " . $im->getImageHeight() . "pixel
";
// Getting width of the image
echo "The Width of the image is: " . $im->getImageWidth() . "pixel";
?>
输出:
The Height of the image is: 215 pixel
The Width of the image is: 604 pixel
参考: https: PHP。 PHP