-
php动态生成饼图代码
- */
- //创建图像
- $image=imagecreatetruecolor(300,300);
- //定义画饼状图所需要的颜色
- $white=imagecolorallocate($image, 0xff, 0xff, 0xff);
- $gray=imagecolorallocate($image, 0xc0, 0xc0, 0xc0);
- $darkgray=imagecolorallocate($image, 0x90, 0x90, 0x90);
- $navy=imagecolorallocate($image, 0x00, 0x00, 0x80);
- $darknavy=imagecolorallocate($image, 0x00, 0x00, 0x50);
- $red=imagecolorallocate($image, 0xff, 0x00, 0x00);
- $darkred=imagecolorallocate($image, 0x90, 0x00, 0x00);
- /*
- imagecolorallocate -- 为一幅图像分配颜色 说明 int imagecolorallocate ( resource image, int red, int green, int blue) imagecolorallocate() 返回一个标识符,代表了由给定的 rgb 成分组成的颜色。image 参数是 imagecreate() 函数的返回值。red,green 和 blue 分别是所需要的颜色的红,绿,蓝成分。这些参数是 0 到 255 的整数或者十六进制的 0x00 到 0xff。imagecolorallocate() 必须被调用以创建每一种用在 image 所代表的图像中的颜色。
- */
- //画图
- for($i=160;$i > 150; $i--)
- {
- imagefilledarc($image, 150, $i, 200, 80, 0, 45, $darknavy, img_arc_pie);
- imagefilledarc($image, 150, $i, 200, 80, 45, 75 , $darkgray, img_arc_pie);
- imagefilledarc($image, 150, $i, 200, 80, 75, 360 , $darkred, img_arc_pie);
- }
- imagefilledarc($image, 150, 150, 200, 80, 0, 45, $navy, img_arc_pie);
- imagefilledarc($image, 150, 150, 200, 80, 45, 75 , $gray, img_arc_pie);
- imagefilledarc($image, 150, 150, 200, 80, 75, 360 , $red, img_arc_pie);
- header('content-type: image/png');
- imagepng($image);
- imagedestroy($image);
- /*
- imagefilledarc()函数,可以在画出椭圆弧的同时,使用指定颜色对其进行填充。使用此函数的这种功能,就可以很简单的画出一个用于统计的饼状图。下面演示imagefilledarc()函数的使用方法
- */
- //在图片画线条
- //创建真彩色图像
- $img=imagecreatetruecolor(300,300);
- $white=imagecolorallocate($img,255,255,255);
- $red=imagecolorallocate($img,255,0,0);
- $green=imagecolorallocate($img,0,255,0);
- //在图像上画椭圆
- imagefilledellips教程e($img,150,150,250,100,$red);
- imagefilledellipse($img,150,150,100,250,$green);
- //输出图像
- header("content-type: image/png");
- imagepng($img);//开源代码phpfensi.com
- //销毁图像
- imagedestroy($img);
原文链接:http://www.phpfensi.com/php/20140819/4447.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式