最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php imagecreatefromgif创建 gif图片
时间:2022-07-02 10:15:06 编辑:袖梨 来源:一聚教程网
imagecreatefromgif创建 gif图片
imagecreatefromgif($filename)
imagecreatefromgif()返回一个图像标识符代表从给定的文件名获得的图像
$filename是gif图片名称哦。
来看个实例
function LoadGif($imgname)
{
/* Attempt to open */
$im = @imagecreatefromgif($imgname);
/* See if it failed */
if(!$im)
{
/* 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);
?>
相关文章
- 三国百将牌姜维怎么使用 三国百将牌姜维使用技巧参考分享 03-20
- 斗破苍穹手游凌影角色解析|技能机制、培养攻略与实战强度全面评测 03-20
- b站是什么平台-bilibili有哪些用途 03-20
- 异人之下冯宝宝强度解析 异人之下宝姐战力定位与实战表现全面评测 03-20
- 抖音网页版免登录入口最新-抖音网页版直达官网入口 03-20
- 异人之下周圣怎么玩 异人之下周圣角色技能解析与实战搭配技巧 03-20