如何在 PHP 中使用 imagegetclip() 函数获取剪切矩形?
imagegetclip()是一个内置的PHP函数,用于获取剪切矩形。它用于检索当前的剪切矩形,即不会绘制超出该区域的像素。
语法
array imagegetclip(resource $image)
参数
imagegetclip()只接受一个参数$image。它保存由图像创建函数之一返回的图像资源,例如imagecreatetruecolor().
返回类型
imagegetclip()返回一个索引数组,其中包含裁剪矩形x,y左上角和x,y左下角的坐标。
示例1
输出结果Array ( [0] => 20 [1] => 20 [2] => 90 [3] => 90 )
示例2
".print_r(imagegetclip($img),true).""); ?>输出结果Array ( [0] => 0 [1] => 0 [2] => 611 [3] => 395 )