Thursday, December 11, 2025
HomeLanguagesPHP | imagecopy() Function

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:
part of image

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:
full image

Related Articles:

Reference: http://php.net/manual/en/function.imagecopy.php

RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7193 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS