imagesetclip

(PHP 7 >= 7.2.0, PHP 8)

imagesetclip设置裁剪矩形

说明

imagesetclip(
    GdImage $image,
    int $x1,
    int $y1,
    int $x2,
    int $y2
): bool

imagesetclip() 设置当前裁剪矩形,即超出该区域将不再绘制像素的区域。

参数

image

一个 GdImage 对象,由一个图像创建函数返回,例如 imagecreatetruecolor()

x1

左上角的 x 坐标。

y1

左上角的 y 坐标。

x2

右下角的 x 坐标。

y2

右下角的 y 坐标。

返回值

成功时返回 true,失败时返回 false

变更日志

版本 说明
8.0.0 image 现在需要一个 GdImage 实例;以前需要一个有效的 gd resource

参见

添加注释

用户贡献注释

此页面没有用户贡献注释。
To Top