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
相關用法
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- PHP Imagick profileImage()用法及代碼示例
- PHP Imagick coalesceImages()用法及代碼示例
- PHP Imagick functionImage()用法及代碼示例
- PHP Imagick smushImages()用法及代碼示例
- PHP Imagick readImageBlob()用法及代碼示例
- PHP Imagick identifyFormat()用法及代碼示例
- PHP Imagick colorizeImage()用法及代碼示例
- PHP Imagick addImage()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
- PHP Imagick getPage()用法及代碼示例
注:本文由純淨天空篩選整理自AllBoutStudies大神的英文原創作品 PHP | Imagick encipherImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。