📜  PHP | imagecreatefromgif()函数

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

PHP | imagecreatefromgif()函数

imagecreatefromgif()函数是PHP中的一个内置函数,用于从 GIF 文件或 URL 的给定部分创建新图像。此外,可以在程序中处理此图像。此函数仅加载动画的第一帧。

句法:

resource imagecreatefromgif( string $filename )

参数:此函数接受一个保存图像的参数$filename

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

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

示例 1:在浏览器中加载第一帧。


输出:

示例 2:在本地文件夹中将第一帧保存为 JPG


输出:

This will save the first frame as firstframe.jpg in the same folder.

注意:图像资源指针中只返回第一帧。

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