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 文件):
输出:
程序 2(将 gd2 转换为 jpeg):
输出:
It will load the part of image and convert it
into JPEG and saves it into same folder.
参考: https://www. PHP.net/manual/en/函数.imagecreatefromgd2part。 PHP