PHP | Gmagick getimagesignature()函数
Gmagick::getimagesignature()函数是PHP中的一个内置函数,用于为图像生成 SHA-256 消息摘要。
句法:
string Gmagick::getimagesignature( void )
参数:此函数不接受任何参数。
返回值:此函数返回文件的 SHA-256 哈希字符串。
下面的程序说明了PHP中的Gmagick::getimagesignature()函数:
原图1:
方案一:
getimagesignature();
print($pixels);
?>
输出:
f64054f5bcb4cfb82c6126eff6d3d4e6be7d0e72d5620033442cecb4b9feabbd
原始图像 2:
方案二:
setFillColor(new GmagickPixel('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 GmagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
// Using getimagesignature function
$pixels = $im->getimagesignature();
print($pixels);
?>
输出:
ed79035e13153385c344d19586e98941dd336165a3ca486200097c0bd2f4188c
参考: http: PHP。 PHP