php简单创建图片实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 16:41:23 浏览: 评论:0
php创建图片教程,我们在编程时经常会看到用php写图片,验证码等,下面是一个简单的php创建图片实例代码:
- <?php
- $height = 300;
- $width = 300;
- $im = ImageCreateTrueColor($width, $height);
- $white = ImageColorAllocate ($im, 255, 255, 255);
- $blue = ImageColorAllocate ($im, 0, 0, 64);
- ImageFill($im, 0, 0, $blue);
- //ImageLine($im, 0, 0, $width, $height, $white);
- ImageString($im, 10, 100, 120, 'Hello,PHP', $white);
- Header ('Content-type: image/png');
- ImagePng($im);
- //开源代码phpfensi.com
- ImageDestroy($im);
- ?>
Tags: php创建图片 php图片实例
- 上一篇:php 图片下载程序
- 下一篇:php 图片处理函数实例教程
相关文章
- ·php创建不失真高清图片实现代码(2014-08-19)
- ·php创建高清缩略图详细使用方法(2014-08-19)
- ·php创建缩略图程序(2014-08-20)
- ·PHP中多张图片合成一张图片例子(2015-04-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)