PHP |想象一下 getImageSignature()函数
Imagick::getImageSignature()函数是PHP中的一个内置函数,用于为图像生成 SHA-256 消息摘要。
句法:
string Imagick::getImageSignature( void )
参数:此函数不接受任何参数。
返回值:此函数返回文件的 SHA-256 哈希字符串。
下面的程序说明了PHP中的Imagick::getImageSignature()函数:
方案一:
原图:
getImageSignature();
print($pixels);
?>
输出:
f64054f5bcb4cfb82c6126eff6d3d4e6be7d0e72d5620033442cecb4b9feabbd
方案二:
原图:
setFillColor(new ImagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
// Using getImageSignature function
$pixels = $im->getImageSignature();
print($pixels);
?>
输出:
ed79035e13153385c344d19586e98941dd336165a3ca486200097c0bd2f4188c
参考: http: PHP。 PHP