📜  PHP | imagegd2()函数

📅  最后修改于: 2022-05-13 01:56:24.742000             🧑  作者: Mango

PHP | imagegd2()函数

imagegd2()函数是PHP中的一个内置函数,用于将 GD2 图像输出到浏览器或文件。这对于将任何其他图像类型转换为 gd2 最有用。 imagecreatefromgd2()函数可用于进一步读取 gd2 图像。

句法:

bool imagegd2( resource $image, float $to, 
             int $chunk_size, int $type )

参数:该函数接受上面提到的四个参数,如下所述:

  • $image:它指定要处理的图像。
  • $to (可选):它指定保存文件的路径。
  • $chunk_size (可选):它指定块的大小。
  • $type (可选):它指定要使用的压缩类型,可以是IMG_GD2_RAWIMG_GD2_COMPRESSED 之一

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。

异常:此函数在出错时抛出异常。

下面的例子说明了PHP中的imagegd2()函数

示例 1:查看 GD2 文件。


输出:

This will output the image in the form of string
as gd2 isn't supported in browser.

示例 2:将图像转换为 GD2。


输出:

This will save a image with name geeksforgeeks.gd2 in the same folder.

参考: https://www. PHP.net/manual/en/函数.imagegd2。 PHP