PHP | imagecrop() Function
The imagecrop() function is an inbuilt function in PHP which is used to crop an image to the given rectangle. This function crops an image to the given rectangular area and returns the resulting image. The given image is not modified.
Syntax:
imagecrop ( $image, $rect )
Parameters: This function accepts two parameters as mentioned above and described below:
- $image: It is returned by one of the image creation functions, such as imagecreatetruecolor(). It is used to create size of image.
- $rect: The cropping rectangle as array with keys x, y, width and height.
Return Value: This function return cropped image resource on success or False on failure.
Below programs illustrate the imagecrop() function in PHP:
Program:
<?php // Create an image from given image $im = imagecreatefrompng( // find the size of image $size = min(imagesx($im), imagesy($im)); // Set the crop image size $im2 = imagecrop($im, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 150]); if ($im2 !== FALSE) { header("Content-type: image/png"); imagepng($im2); imagedestroy($im2); } imagedestroy($im); ?> |
output:

Related Articles:
Reference: http://php.net/manual/en/function.imagecrop.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- D3.js | d3.map.has() Function
- CSS | rgb() Function
- PHP | cos( ) Function
- PHP | sin( ) Function
- PHP | tan( ) Function
- p5.js | hue() function
- p5.js | log() function
- p5.js | cos() function
- D3.js | d3.sum() function
- PHP | exp() Function
- p5.js | tan() function
- D3.js | d3.min() function
- p5.js | red() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



