php画图实例
2015-01-24信息快讯网
这篇文章主要介绍了php画图的方法,实例讲述了基于PHP绘制图像与文字的方法,需要的朋友可以参考下
本文实例讲述了php画图的方法。分享给大家供大家参考。具体实现方法如下:
<?php // by MoreWindows $imgWidth = 600; $imgHeight = 400; $img = imagecreatetruecolor($imgWidth, $imgHeight); imagefill($img, 0, 0, imagecolorallocate($img, 240, 240, 240));//设置底色 $snowflake_size = 30; $font_file = "c:\\WINDOWS\\Fonts\\simhei.ttf"; //生成大雪花 其实就是调用imagettftext()输出*号 for ($i=1; $i<=400; $i++) { $font_color = imagecolorallocate($img, mt_rand(100,200), mt_rand(100,200), mt_rand(100,200)); imagettftext($img, $snowflake_size, mt_rand(0, 180), mt_rand(0, $imgWidth),mt_rand(0, $imgHeight), $font_color, $font_file, "□"); } //水印文字 $black_color = imagecolorallocate($img, 0, 0, 0); imagettftext($img, 12, 0, $imgWidth - 50 , $imgHeight - 20, $black_color, $font_file, "PHP画图"); imagepng($img); imagedestroy($img); ?>
本实例运行效果如下图所示
更多请参考:
http://www.php.net/manual/zh/refs.utilspec.image.php
希望本文所述对大家的PHP程序设计有所帮助。
php使用正则表达式获取图片url的方法
php使用CURL伪造IP和来源实例详解
php+mysql实现无限分类实例详解
php截取html字符串及自动补全html标签的方法
php在linux下检测mysql同步状态的方法
php+mysql查询优化简单实例
PHP针对JSON操作实例分析
php中的动态调用实例分析
PHP动态编译出现Cannot find autoconf的解决方法
PHP队列用法实例
CI框架验证码CAPTCHA辅助函数用法实例
PHP操作MySQL事务实例
PHP通过插入mysql数据来实现多机互锁实例
PHP中使用虚代理实现延迟加载技术
PHP实现获取域名的方法小结
PHP中ini_set与ini_get用法实例
纯PHP生成的一个树叶图片画图例子
php调整gif动画图片尺寸示例代码分享