当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。