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

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

PHP |想象一下 decipherImage()函数

Imagick::decipherImage()函数是PHP中的一个内置函数,用于破译之前已加密的图像。

句法:

bool Imagick::decipherImage( string $passphrase )

参数:此函数接受单个参数$passphrase ,其中包含密码短语值或解密图像的密钥。

返回值:此函数在成功时返回 TRUE。

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

程序:

decipher('GeeksforGeeks'); 
  
header("Content-Type: image/png"); 
    
// Display the output image 
echo $imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagick.decipherimage。 PHP