📅  最后修改于: 2023-12-03 15:03:40.403000             🧑  作者: Mango
identifyImage()
函数介绍identifyImage()
函数?identifyImage()
是一个 PHP 函数,用于识别图像文件的元数据和特征。该函数使用 ImageMagick 或 GraphicsMagick 库来操作图像文件。这个函数可以返回图像文件类型、大小、分辨率、颜色深度、创建时间等信息。
identifyImage()
函数的使用非常简单。它只需要传递图像文件路径作为参数,并将返回一个包含元数据和特征的关联数组。
function identifyImage($path)
{
if (!extension_loaded('imagick') && !extension_loaded('gmagick'))
{
throw new Exception('ImageMagick or GraphicsMagick extension not installed.');
}
if (!is_file($path))
{
throw new Exception('File not found: ' . $path);
}
if (extension_loaded('imagick'))
{
$image = new Imagick($path);
}
else
{
$image = new Gmagick($path);
}
$properties = array(
'format' => strtolower($image->getImageFormat()),
'width' => $image->getImageWidth(),
'height' => $image->getImageHeight(),
'colorSpace' => strtolower($image->getImageColorspace()),
'depth' => $image->getImageDepth(),
'size' => filesize($path),
'createDate' => date("Y-m-d H:i:s", $image->getImageProperty("exif:DateTimeOriginal")),
'modifyDate' => date("Y-m-d H:i:s", filemtime($path))
);
$image->clear();
$image->destroy();
return $properties;
}
$path
:图像文件路径。identifyImage()
函数返回包含图像元数据和特征的关联数组。数组包含以下元素:
format
:图像格式。width
:图像宽度(像素单位)。height
:图像高度(像素单位)。colorSpace
:图像颜色空间。depth
:图像颜色深度。size
:图像文件大小。createDate
:图像文件创建日期。modifyDate
:图像文件修改日期。$path = 'path/to/image.jpg';
$imageData = identifyImage($path);
print_r($imageData);
返回结果应该类似于:
Array
(
[format] => jpeg
[width] => 800
[height] => 600
[colorSpace] => srgb
[depth] => 8
[size] => 123456
[createDate] => 2021-06-01 10:00:00
[modifyDate] => 2021-06-02 11:00:00
)