首页 > 语言 > PHP > 正文

php imagecreatefromgif创建gif图片

2024-09-04 11:44:25
字体:
来源:转载
供稿:网友

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.     {//开源代码Vevb.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. ?> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表