«

PHP:imagecopy()的用法

时间:2024-3-1 21:45     作者:韩俊     分类: Python


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_xsrc_y 开始,宽度为 src_w,高度为 src_h 的一部分拷贝到 dst_im 图像中坐标为 dst_xdst_y 的位置上。

标签: python

热门推荐