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


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


Imagick::readImages()函數是PHP中的內置函數,用於從文件名數組中讀取圖像並將它們關聯到單個Imagick對象。

用法:

bool Imagick::readImages( array $filenames )

參數:此函數接受單個參數$filenames,該參數包含一個包含所有文件名的數組。


返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

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

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Array of images 
$images = [ 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png', 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'
]; 
  
// Read the images 
$imagick->readImages($images); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Array of images 
$images = [ 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png', 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'
]; 
  
// Read the images 
$imagick->readImages($images); 
  
// Moving index to 0 to check if the first image 
// is also inserted. 
$imagick->setIteratorIndex(0); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

程序3:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Array of images (from local folder). For this 
// to work mentioned images should be there in the 
// local folder. 
$images = [ 
    'filename1.png', 
    'filename2.png'
]; 
  
// Read the images 
$imagick->readImages($images); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

It will show filename2.png on the screen.

參考: https://www.php.net/manual/en/imagick.readimages.php



相關用法


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