PHP.nl

imagecopy

imagecopy

Copy part of an image

true **imagecopy** GdImage $dst_image GdImage $src_image int $dst_x int $dst_y int $src_x int $src_y int $src_width int $src_height

Copy a part of onto starting at the x,y coordinates , with a width of and a height of . The portion defined will be copied onto the x,y coordinates, and . src_image``dst_image``src_x``src_y``src_width``src_height``dst_x``dst_y

dst_imagegd.image.destination

src_imagegd.image.source

dst_xx-coordinate of destination point.

dst_yy-coordinate of destination point.

src_xx-coordinate of source point.

src_yy-coordinate of source point.

src_widthgd.source.width

src_heightgd.source.height

return.true.always

Voorbeeld: Cropping the PHP.net logo

<?php
// Create image instances
$src = imagecreatefromgif('php.gif');
$dest = imagecreatetruecolor(80, 40);

// Copy
imagecopy($dest, $src, 0, 0, 20, 13, 80, 40);

// Output and free from memory
header('Content-Type: image/gif');
imagegif($dest);
?>

imagecrop