当前位置:首页 > PHP教程 > php图像处理 > 列表

php imagecreatefromgif创建gif图片

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 16:35:47 浏览: 评论:0 

php imagecreatefromgif创建gif图片

imagecreatefromgif($filename)

imagecreatefromgif()返回一个图像标识符代表从给定的文件名获得的图像

$filename是gif图片名称,来看个实例:

  1. <?php 
  2. function LoadGif($imgname
  3.     /* Attempt to open */ 
  4.     $im = @imagecreatefromgif($imgname); 
  5.  
  6.     /* See if it failed */ 
  7.     if(!$im
  8.     {//开源代码phpfensi.com 
  9.         /* Create a blank image */ 
  10.         $im = imagecreatetruecolor (150, 30); 
  11.         $bgc = imagecolorallocate ($im, 255, 255, 255); 
  12.         $tc = imagecolorallocate ($im, 0, 0, 0); 
  13.  
  14.         imagefilledrectangle ($im, 0, 0, 150, 30, $bgc); 
  15.  
  16.         /* Output an error message */ 
  17.         imagestring ($im, 1, 5, 5, 'Error loading ' . $imgname$tc); 
  18.     } 
  19.  
  20.     return $im
  21.  
  22. header('Content-Type: image/gif'); 
  23.  
  24. $img = LoadGif('bogus.image'); 
  25.  
  26. imagegif($img); 
  27. imagedestroy($img); 
  28. ?> 

Tags: imagecreatefromgif 创建图片

分享到: