當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Imagick encipherImage()用法及代碼示例


Imagick::encipherImage()函數是PHP中的內置函數,用於將純像素圖像轉換為加密像素。此函數僅將像素轉換為加密後的像素,然後僅當使用與加密時使用的相同字符串解密圖像時,該圖像才可讀。

用法:

bool Imagick::encipherImage( $passphrase )

參數:此函數接受單個參數$passphrase,該參數保存密碼短語的值。


返回值:成功返回True,失敗返回False。

以下示例程序旨在說明PHP中的Imagick::encipherImage()函數:

程序:

<?php 
  
// Creating new Imagick object 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Creating the passphrase 
$passphrase = "GeeksforGeeks"; 
  
// Calling the function 
$image->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.net/manual/en/imagick.encipherimage.php



相關用法


注:本文由純淨天空篩選整理自AllBoutStudies大神的英文原創作品 PHP | Imagick encipherImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。