當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagegif()用法及代碼示例


imagegif()函數是PHP中的內置函數,用於從給定圖像創建GIF圖像文件。如果使用imagecolortransparent()函數使圖像透明,則將生成GIF89a圖像格式,否則將生成GIF87a圖像格式。
用法:

bool imagegif( $image, $to )

參數:該函數接受上述和以下描述的兩個參數:

  • $image: 它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $to:此參數用於設置輸入圖像的路徑。如果未設置或將其設置為NULL,則它將產生原始圖像流。

返回值:如果成功,則此函數返回True;如果失敗,則返回False。


以下示例程序旨在說明PHP中的imagegif()函數:

程序1:

<?php 
// Create a new image of given size 
$image = imagecreatetruecolor(500, 300); 
   
  
// Set background color 
$bg = imagecolorallocate($image, 255, 255, 255); 
   
// Set text color 
$textcolor = imagecolorallocate($image, 0, 153, 0); 
   
// Make the background white 
imagefilledrectangle($image, 0, 0, 500, 300, $bg); 
   
// Draw a text string on the image 
imagestring($image, 6, 160, 140, 'GeeksforGeeks', $textcolor); 
   
// Output the image to browser 
header('Content-Type: image/gif'); 
   
// Create GIF image 
imagegif($image); 
  
imagedestroy($image); 
?>

輸出:
imagegif

程序2:

<?php 
   
// Load the PNG image file 
$png = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
   
// Output the image to browser 
header('Content-Type: image/gif'); 
  
// Convert PNG image to GIF image 
imagegif($png); 
  
imagedestroy($png); 
?>

輸出:
imagegif

相關文章:

參考: http://php.net/manual/en/function.imagegif.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagegif() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。