Friday, September 5, 2025
HomeLanguagesPHP | Imagick resetImagePage() Function

PHP | Imagick resetImagePage() Function

The Imagick::resetImagePage() function is an inbuilt function in PHP which is used to reset the image page.

Syntax:

bool Imagick::resetImagePage( string $page )

Parameters: This function accepts a single parameter $page which holds the page definition in form of WxH+x+y, where W is for width, H is for height, x is for x-coordinate and y is for y-coordinate.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

Below programs illustrate the Imagick::resetImagePage() function in PHP:

Program 1:




<?php
  
// Create a new Imagick object
$imagick = new Imagick(
  
// Reset the Image Page
$imagick->resetImagePage('768x147+2+2');
  
// Get the Image Page
$page = $imagick->getImagePage();
print("<pre>".print_r($page, true)."</pre>");
?>


Output:

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

Program 2:




<?php
  
// Create a new Imagick object
$imagick = new Imagick(
  
// Reset the Image Page
$imagick->resetImagePage('800x300+1+1');
  
// Get the Image Page
$page = $imagick->getImagePage();
print("<pre>".print_r($page, true)."</pre>");
?>


Output:

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

Reference: https://www.php.net/manual/en/imagick.resetimagepage.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6636 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7027 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS