📜  PHP |想象一下 encipherImage()函数

📅  最后修改于: 2022-05-13 01:56:30.025000             🧑  作者: Mango

PHP |想象一下 encipherImage()函数

Imagick::encipherImage()函数是PHP中的一个内置函数,用于将普通像素图像转换为加密像素。此函数只是将像素转换为加密像素,然后只有使用与加密相同的字符串解密图像才能读取图像。

句法:

bool Imagick::encipherImage( $passphrase )

参数:此函数接受单个参数$passphrase保存密码值。

返回值:成功时返回True,失败时返回False。

下面的程序说明了PHP中的 Imagick::encipherImage()函数:

程序:

encipherImage($passphrase);
  
// $image is now enciphered with string
// "GeeksforGeeks"
// $image can only be made readable by 
// decipherImage() method
// with the same passphrase as parameter
  
header("Content-Type: image/jpg"); 
  
// Showing the deciphered image which is
// same as our sampleimage.jpeg
echo $image;
  
?>

输出:
如果密码不正确,则解密图像:

参考: https: PHP。 PHP