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

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

PHP |想象一下 getPage()函数

Imagick::getPage()函数是PHP中的一个内置函数,用于以关联数组格式返回与 Imagick 对象关联的页面的几何形状。

句法:

array Imagick::getPage( void )

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

返回值:此函数返回一个关联数组,其中包含“width”、“height”、“x”和“y”键。

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

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

方案一:

getPage();
  
print_r($geometry);
?>

输出:

Array ( [width] => 0 [height] => 0 [x] => 0 [y] => 0 )

方案二:

setPage(200, 300, 0, 0);
  
// Get the Page Geometry
$geometry = $imagick->getPage();
  
print_r($geometry);
?>

输出:

Array ( [width] => 200 [height] => 300 [x] => 0 [y] => 0 )

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