📜  PHP |想象一下 readImages()函数

📅  最后修改于: 2022-05-13 01:56:49.600000             🧑  作者: Mango

PHP |想象一下 readImages()函数

Imagick::readImages()函数是PHP中的一个内置函数,用于从文件名数组中读取图像并将它们关联到单个 Imagick 对象。

句法:

bool Imagick::readImages( array $filenames )

参数:此函数接受一个参数$filenames ,它包含一个包含所有文件名的数组。

返回值:此函数在成功时返回 TRUE。

异常:此函数在出错时抛出 ImagickException。

下面的程序说明了PHP中的Imagick::readImages()函数

方案一:

readImages($images);
  
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

方案二:

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:

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