📜  PHP | imagecreatefromgd()函数

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

PHP | imagecreatefromgd()函数

imagecreatefromgd()函数是PHP中的一个内置函数,用于从 GD 文件或 URL 创建新图像。此外,可以在程序中处理此图像。可以使用imagegd()函数将图像转换为 GD 格式。

句法:

resource imagecreatefromgd( string $filename )

参数:此函数接受单个参数$filename ,其中包含文件的名称或 URL。

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

下面给出的程序说明了PHP中的imagecreatefromgd()函数
程序 1(在浏览器中查看 gd 文件):


输出:

This will load gd image in text form as it is not supported by browser.

程序2(将GD转成png并在浏览器中查看):


输出:

程序3(将GD转为jpg):


输出:

This will convert GD image into JPEG and save in local folder.

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