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

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

PHP |想象一下 getImage()函数

Imagick::getImage()函数是PHP中的一个内置函数,用于获取 Imagick 对象的当前图像序列。此函数可用于将一个 Imagick 对象的内容复制到新变量中。

句法:

string Imagick::getImage( void )

参数:此函数不接受任何参数。

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

返回值:此函数在成功时返回一个新的 Imagick 对象。

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

方案一:

getImage();
  
// Check if image is there in new variable
header("Content-Type: image/png");
  
echo $destination_imagick->getImageBlob();
?>

输出:

方案二:

addImage(new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/20190914153420/paintopaque.png'));
  
// Copy the Image to another variable
$destination_imagick = $source_imagick->getImage();
  
// Check if next image is also there
$destination_imagick->nextImage();
  
header("Content-Type: image/png");
echo $destination_imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagick.getimage。 PHP