Open In App

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:

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


Article Tags :