PHP | imagecopy() Function
The imagecopy() function is an inbuilt function in PHP which is used to copy the image or part of image. This function returns true on success or false on failure.
Syntax:
bool imagecopy ( $dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h )
Parameters: This function accepts eight parameters as mentioned above and described below:
- $dst_image: This parameter is used to set destination image link resource.
- $src_image: This parameter is used to set source image link resource.
- $dst_x: This parameter is used to set x-coordinate of destination point.
- $dst_y: This parameter is used to set y-coordinate of destination point.
- $src_x: This parameter is used to set x-coordinate of source point.
- $src_y: This parameter is used to set x-coordinate of source point.
- $src_w: This parameter is used to set source width.
- $src_h: This parameter is used to set source height.
Return Value: This function returns True on success or False on failure.
Below programs illustrate the imagecopy() function in PHP.
Program 1:
<?php // Create image instances $src = imagecreatefromgif( $dest = imagecreatetruecolor(400, 200); // Image copy from source to destination imagecopy($dest, $src, 0, 0, 0, 0, 500, 300); // Output and free from memory header('Content-Type: image/gif'); imagegif($dest); imagedestroy($dest); imagedestroy($src); ?> |
Output:

Program 2:
<?php // Create image instances $src = imagecreatefromgif( $dest = imagecreatetruecolor(665, 180); // Image copy from source to destination imagecopy($dest, $src, 0, 0, 0, 0, 665, 180); // Output and free from memory header('Content-Type: image/gif'); imagegif($dest); imagedestroy($dest); imagedestroy($src); ?> |
Output:

Related Articles:
Reference: http://php.net/manual/en/function.imagecopy.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 ?
- p5.js | nf() Function
- PHP | max( ) Function
- p5.js | nfc() function
- D3.js | d3.set.has() Function
- p5.js | box() Function
- PHP | Ds\Set first() Function
- D3.js | d3.map.set() Function
- PHP | Ds\Set last() Function
- CSS | rgb() Function
- PHP | Ds\Set contains() Function
- PHP | key() Function
- PHP | end() Function
- PHP | min( ) 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.



