Monday, October 6, 2025
HomeLanguagesPHP | Imagick extentImage() Function

PHP | Imagick extentImage() Function

The Imagick::extentImage() function is an inbuilt function in PHP which provides the method for setting the image size. This method sets the image size and allows to set x, y coordinates where the new area of the image begins.

Syntax:

bool Imagick::extentImage( $width, $height, $x, $y )

Parameter: This function accept four parameters as mentioned above and described below:

  • $width: This parameter stores the value of the new width.
  • $height: This parameter stores the value of the new height.
  • $x: This parameter stores the value of X position for the new size.
  • $y: This parameter stores the value of Y position for the new size.

Return Value: This function returns True on success.

Original Image:

Below program illustrates the Imagick::extentImage() function in PHP:

Program:




<?php 
  
/*require_once('path/vendor/autoload.php');*/
  
/*Imagick Object*/
$image = new \Imagick(
  
/*Set Background Color*/
$image->setImageBackgroundColor('orange');
  
/*extentImage*/
  
$image->extentImage(
    $image->getImageWidth(),
    $image->getImageHeight(),
    -100,
    -100
);
      
/*Image Header*/
header("Content-Type: image/jpg");
  
// Display output image
echo $image->getImageBlob();
?>


Output:

Reference: http://php.net/manual/en/imagick.extentimage.php

RELATED ARTICLES

Most Popular

Dominic
32338 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6825 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6780 POSTS0 COMMENTS