imagecopy
(PHP 4, PHP 5)
imagecopy — 拷贝图像的一部分
说明
bool <strong>imagecopy</strong>
 ( resource <code>$dst_im</code>
, resource <code>$src_im</code>
, int <code>$dst_x</code>
, int <code>$dst_y</code>
, int <code>$src_x</code>
, int <code>$src_y</code>
, int <code>$src_w</code>
, int <code>$src_h</code>
)
    将 src_im 图像中坐标从
    src_x,src_y 
    开始,宽度为 src_w,高度为 src_h
    的一部分拷贝到
    dst_im 图像中坐标为
    dst_x 和 dst_y 的位置上。