📜  PHP | imagegd()函数

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

PHP | imagegd()函数

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

句法:

bool imagegd( resource $image, float $to)

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

  • $image:它指定要处理的图像。
  • $to (可选):它指定保存文件的路径。

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

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

下面给出的程序说明了PHP中的imagegd()函数
程序 1(查看 GD 文件):


输出:

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

程序2(将图像转换为gd):


输出:

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

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