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


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


Imagick::importImagePixels()函數是PHP中的內置函數,用於將像素從數組導入圖像。

用法:

bool Imagick::importImagePixels( int $x, int $y, int $width, int $height, string $map, 
                        int $storage, array $pixels )

參數:此函數接受上述和以下所述的七個參數:


  • $x:它指定圖像x的位置。
  • $y:它指定圖像y的位置。
  • $width:它指定圖像寬度。
  • $height:它指定圖像高度。
  • $map:它指定像素排序圖為字符串。
  • $storage:它指定像素存儲方法,該方法是對應於一個PIXEL常數的整數值。
  • $pixels:它指定像素數組。

PIXEL常量列表如下:

  • imagick::PIXEL_CHAR(0)
  • imagick::PIXEL_DOUBLE(1)
  • imagick::PIXEL_FLOAT(2)
  • imagick::PIXEL_INTEGER(3)
  • imagick::PIXEL_LONG(4)
  • imagick::PIXEL_QUANTUM(5)
  • imagick::PIXEL_SHORT(6)

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

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

下麵給出的程序說明了PHP中的Imagick::importImagePixels()函數:

程序1:

<?php 
  
// Create a new Imagick object 
$imagick = new Imagick(); 
  
// Generate array of pixels 
$pixels = 
   array_merge(array_pad(array(), 15000, 0), 
               array_pad(array(), 15000, 255)); 
  
$imagick->newImage(100, 100, 'white'); 
  
// Import the pixels into image. 
$imagick->importImagePixels(0, 0, 100, 100, "RGB", imagick::PIXEL_FLOAT, $pixels); 
  
// Show the output 
$imagick->setImageFormat('png'); 
header("Content-Type: image/png"); 
echo $imagick; 
?>

輸出:

程序2:

<?php 
  
// Create a new Imagick object 
$imagick = new Imagick(); 
  
// Generate array of pixels 
$pixels = 
   array_merge(array_pad(array(), 5000, 0), 
               array_pad(array(), 5000, 255), 
               array_pad(array(), 5000, 0), 
               array_pad(array(), 5000, 255), 
               array_pad(array(), 5000, 0), 
               array_pad(array(), 5000, 255)); 
  
$imagick->newImage(100, 100, 'white'); 
  
// Import the pixels into image. 
$imagick->importImagePixels(0, 0, 100, 100, "RGB", imagick::PIXEL_FLOAT, $pixels); 
  
// Show the output 
$imagick->setImageFormat('png'); 
header("Content-Type: image/png"); 
echo $imagick; 
?>

輸出:

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



相關用法


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