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

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

PHP |想象一下 setPage()函数

Imagick::setPage()函数是PHP中的一个内置函数,用于设置 Imagick 对象的页面几何形状。

句法:

bool Imagick::setPage( int $width, int $height, int $x, int $y )

参数:该函数接受上面提到的四个参数,如下所述:

  • $width:它指定页面的宽度。
  • $height:指定页面的高度。
  • $x:指定页面的x坐标。
  • $y:指定页面的y坐标。

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

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

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

方案一:

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

输出:

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

方案二:

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

输出:

Array ( [width] => 200 [height] => 100 [x] => 8 [y] => 16 )

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