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

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

PHP |想象一下 resetImagePage()函数

Imagick::resetImagePage()函数是PHP中的一个内置函数,用于重置图像页面。

句法:

bool Imagick::resetImagePage( string $page )

参数:此函数接受单个参数$page ,它以 WxH+x+y 的形式保存页面定义,其中 W 表示宽度,H 表示高度,x 表示 x 坐标,y 表示 y 坐标。

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

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

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

方案一:

resetImagePage('768x147+2+2');
  
// Get the Image Page
$page = $imagick->getImagePage();
print("
".print_r($page, true)."
"); ?>

输出:

Array
(
    [width] => 768
    [height] => 147
    [x] => 2
    [y] => 2
)

方案二:

resetImagePage('800x300+1+1');
  
// Get the Image Page
$page = $imagick->getImagePage();
print("
".print_r($page, true)."
"); ?>

输出:

Array
(
    [width] => 800
    [height] => 300
    [x] => 1
    [y] => 1
)

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