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


PHP imagecreatefromgd2part()用法及代码示例


imagecreatefromgd2part()函数是PHP中的内置函数,用于从GD2文件或URL的给定部分创建新图像。此外,可以在程序中处理此图像。通常,浏览器不支持gd2扩展名,因此可以将其转换为png并在浏览器中查看。

用法:

resource imagecreatefromgdpart( string $filename,
         int $srcX, int $srcY, int $width, int $height )

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


  • $filename:它指定GD2图像。
  • $srcX:它指定源点的x坐标。
  • $srcY:它指定源点的y坐标。
  • $width:它指定图像的宽度。
  • $height:它指定图像的高度。

返回值:成功时此函数返回图像资源标识符,错误时返回FALSE。

下面给出的程序说明了PHP中的imagecreatefromgd2part()函数:

程序1(在浏览器中查看gd2文件):

<?php 
  
// Load the GD2 image from local folder GD2 images 
// can be created with imagegd2() function 
$im = imagecreatefromgd2part('./geeksforgeeks.gd2', 
                   300, 0, 300, 300); 
  
// Convert to PNG and output to the browser 
header('Content-type:image/png'); 
imagepng($im); 
imagedestroy($im); 
?>

输出:

程式2(将gd2转换成jpeg):

<?php 
  
// Load the GD2 image from local folder GD2 images 
// can be created with imagegd2() function 
$im = imagecreatefromgd2part('./geeksforgeeks.gd2', 
                 30, 0, 100, 250); 
  
// Convert to JPEG and save to local folder 
imagejpeg($im, 'newgeeksforgeeks.jpeg'); 
imagedestroy($im); 
?>

输出:

It will load the part of image and convert it
into JPEG and saves it into same folder.

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



相关用法


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