VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php imagecreatefromgif创建gif图片

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. ?> 
  29.  

原文链接:http://www.phpfensi.com/php/20140819/4496.html


相关教程