imagecreatefromgif()函数是PHP中的内置函数,用于从GIF文件或URL的给定部分创建新图像。此外,可以在程序中处理此图像。此函数仅加载动画的第一帧。
用法:
resource imagecreatefromgif( string $filename )
参数:该函数接受单个参数$filename来保存图像。
返回值:成功时此函数返回图像资源标识符,错误时返回FALSE。
以下示例说明了PHP中的imagecreatefromgif()函数:
范例1:在浏览器中加载第一帧。
<?php
// Create an image from gif
$im = imagecreatefromgif(
'https://media.geeksforgeeks.org/wp-content/uploads/20191117145951/g4gnaimation1.gif');
// View the image
header("Content-Type:image/gif");
imagegif($im);
imagedestroy($im);
?>
输出:
范例2:将第一帧另存为JPG在本地文件夹中
<?php
// Create an image from gif
$im = imagecreatefromgif(
'https://media.geeksforgeeks.org/wp-content/uploads/20191117145951/g4gnaimation1.gif');
// Save the image as jpeg
imagejpeg($im, 'firstframe.jpg');
imagedestroy($im);
?>
输出:
This will save the first frame as firstframe.jpg in the same folder.
注意:图像资源指针中仅返回第一帧。
参考: https://www.php.net/manual/en/function.imagecreatefromgif.php
相关用法
- PHP each()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js pow()用法及代码示例
- PHP next()用法及代码示例
- p5.js second()用法及代码示例
- CSS var()用法及代码示例
- p5.js day()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- CSS url()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js hue()用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagecreatefromgif() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。