当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagesetclip()用法及代码示例


imagesetclip()函数是PHP中的一个内置函数,用于设置当前的裁剪矩形,即超出该像素的区域。

用法:

bool imagesetclip( resource $im, int $x1, int $y1, int $x2, int $y2 )

参数:该函数接受上述和以下所述的五个参数:


  • $im:它指定要处理的图像资源。
  • $x1:它指定左上角的x坐标。
  • $y1:它指定左上角的y坐标。
  • $x2:它指定右下角的x坐标。
  • $y2:它指定右下角的y坐标。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。
下面给出的程序说明了PHP程序1中的imagesetclip()函数:

<?php 
// Load the png image 
$image = imagecreatefrompng( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the clip 
imagesetclip($image, 0, 0, 40, 40); 
  
// Get the clip 
$clip = imagegetclip($image); 
print("<pre>".print_r($clip, true)."</pre>"); 
?>

输出:

Array
(
    [0] => 0
    [1] => 0
    [2] => 40
    [3] => 40
)

程序2:

<?php 
// Load the png image 
$image = imagecreatefrompng( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the clip 
imagesetclip($image, 20, 20, 150, 150); 
  
// Create a line from upper left corner to (400, 400) 
// and you will see the line doesn't start from upper 
// left corner because it is clipped from (20, 20) 
$red = imagecolorallocate($image, 255, 0, 0); 
imageline($image, 0, 0, 400, 400, $red); 
  
// Output image to the browser 
header('Content-type:image/png'); 
imagepng($image); 
?>

输出:

参考: https://www.php.net/manual/en/function.imagesetclip.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagesetclip() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。