|
PHP5中文手册
imagecopymergegray(PHP 4 >= 4.0.6, PHP 5) imagecopymergegray — 用灰度拷贝并合并图像的一部分 说明
bool imagecopymergegray
( resource $dst_im
, resource $src_im
, int $dst_x
, int $dst_y
, int $src_x
, int $src_y
, int $src_w
, int $src_h
, int $pct
)
将 src_im 图像中坐标从 src_x ,src_y 开始,宽度为 src_w ,高度为 src_h 的一部分拷贝到 dst_im 图像中坐标为 dst_x 和 dst_y 的位置上。两图像将根据 pct 来决定合并程度,其值范围从 0 到 100。当 pct = 0 时,实际上什么也没做,当为 100 时本函数和 imagecopy() 完全一样。 本函数和 imagecopymerge() 完全一样只除了合并时通过在拷贝操作前将目标像素转换为灰度级来保留了原色度。
|