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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。