Imagick::resetImagePage()函数是PHP中的内置函数,用于重置图像页面。
用法:
bool Imagick::resetImagePage( string $page )
参数:该函数接受单个参数$page,该参数以WxH + x + y的形式保存页面定义,其中W表示宽度,H表示高度,x表示x坐标,y表示y坐标。
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
以下示例程序旨在说明PHP中的Imagick::resetImagePage()函数:
程序1:
<?php
// Create a new Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Reset the Image Page
$imagick->resetImagePage('768x147+2+2');
// Get the Image Page
$page = $imagick->getImagePage();
print("<pre>".print_r($page, true)."</pre>");
?>
输出:
Array ( [width] => 768 [height] => 147 [x] => 2 [y] => 2 )
程序2:
<?php
// Create a new Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Reset the Image Page
$imagick->resetImagePage('800x300+1+1');
// Get the Image Page
$page = $imagick->getImagePage();
print("<pre>".print_r($page, true)."</pre>");
?>
输出:
Array ( [width] => 800 [height] => 300 [x] => 1 [y] => 1 )
参考: https://www.php.net/manual/en/imagick.resetimagepage.php
相关用法
- PHP Imagick distortImage()用法及代码示例
- PHP Imagick readImage()用法及代码示例
- PHP Imagick readImageFile()用法及代码示例
- PHP Imagick remapImage()用法及代码示例
- PHP Imagick readImages()用法及代码示例
- PHP Imagick extentImage()用法及代码示例
- PHP Imagick despeckleImage()用法及代码示例
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Imagick sepiaToneImage()用法及代码示例
- PHP Imagick setColorspace()用法及代码示例
- PHP Imagick convolveImage()用法及代码示例
- PHP Imagick getCopyright()用法及代码示例
- PHP Imagick gaussianBlurImage()用法及代码示例
- PHP Imagick enhanceImage()用法及代码示例
- PHP Imagick encipherImage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick resetImagePage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。