php imagecreatefromgif创建gif图片
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 16:35:47 浏览: 评论:0
php imagecreatefromgif创建gif图片
imagecreatefromgif($filename)
imagecreatefromgif()返回一个图像标识符代表从给定的文件名获得的图像
$filename是gif图片名称,来看个实例:
- <?php
- function LoadGif($imgname)
- {
- /* Attempt to open */
- $im = @imagecreatefromgif($imgname);
- /* See if it failed */
- if(!$im)
- {//开源代码phpfensi.com
- /* Create a blank image */
- $im = imagecreatetruecolor (150, 30);
- $bgc = imagecolorallocate ($im, 255, 255, 255);
- $tc = imagecolorallocate ($im, 0, 0, 0);
- imagefilledrectangle ($im, 0, 0, 150, 30, $bgc);
- /* Output an error message */
- imagestring ($im, 1, 5, 5, 'Error loading ' . $imgname, $tc);
- }
- return $im;
- }
- header('Content-Type: image/gif');
- $img = LoadGif('bogus.image');
- imagegif($img);
- imagedestroy($img);
- ?>
Tags: imagecreatefromgif 创建图片
相关文章
- ·php创建不失真高清图片实现代码(2014-08-19)
- ·php创建高清缩略图详细使用方法(2014-08-19)
- ·php简单创建图片实例(2014-08-19)
- ·php创建缩略图程序(2014-08-20)
- ·php使用GD库创建图片缩略图的方法(2021-05-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)