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


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


Imagick::mosaicImages()函數是PHP中的內置函數,用於從圖像形成馬賽克。此函數使用圖像序列形成單個相幹圖片。

用法:

Imagick Imagick::mosaicImages( void )

參數:該函數不接受任何參數。


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

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

程序:

<?php 
   
// Create a new Imagick object 
$imagick = new Imagick(); 
   
// Set the width, height and background 
// color of an image 
$imagick->newimage(500, 200, 'green'); 
   
// Store the images in an array 
$imagesArray = [ 
"https://media.geeksforgeeks.org/wp-content/uploads/20190823154611/geeksforgeeks24.png", 
"https://media.geeksforgeeks.org/wp-content/uploads/20190826132815/download7.png"
]; 
   
// Set the position of each image 
$positionsArray = [ 
    [0, 0], 
    [0, 100] 
]; 
   
// Adding images from set and setting image pages 
for( $i = 0; $i < 2; $i++) { 
      
    $nextImage = new Imagick($imagesArray[$i]); 
      
    $nextImage->resizeimage(300, 300, Imagick::FILTER_LANCZOS, 1.0, true); 
      
    $nextImage->setImagePage( 
        $nextImage->getImageWidth(), 
        $nextImage->getImageHeight(), 
        $positionsArray[$i][0], 
        $positionsArray[$i][1] 
    ); 
   
    $imagick->addImage($nextImage); 
} 
   
// Use mosaicImages() function 
$result = $imagick->mosaicImages(); 
   
// Set the image format 
$result->setImageFormat('png'); 
   
header("Content-Type: image/png"); 
   
// Display the output image 
echo $result->getImageBlob(); 
?>

輸出:

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



相關用法


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