博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 扇形统计图,PHP实现绘制3D扇形统计图及图片缩放实例,_PHP教程
阅读量:4955 次
发布时间:2019-06-12

本文共 927 字,大约阅读时间需要 3 分钟。

PHP实现绘制3D扇形统计图及图片缩放实例,

1、利用php gd库的函数绘制3D扇形统计图

50; $i--)

{

imagefilledarc($image, 50, $i, 100, 50, -160, 40, $darknavy, IMG_ARC_PIE);

imagefilledarc($image, 50, $i, 100, 50, 40, 75, $darkgray, IMG_ARC_PIE);

imagefilledarc($image, 50, $i, 100, 50, 75, 200, $darkred, IMG_ARC_PIE);

}

/*画椭圆弧并填充*/

imagefilledarc($image, 50, 50, 100, 50, -160, 40, $darknavy, IMG_ARC_PIE);

imagefilledarc($image, 50, 50, 100, 50, 40, 75, $darkgray, IMG_ARC_PIE);

imagefilledarc($image, 50, 50, 100, 50, 75, 200, $darkred, IMG_ARC_PIE);

/*画字符串*/

imagestring($image, 3, 15, 55, "30%", $white);

imagestring($image, 3, 45, 35, "60%", $white);

imagestring($image, 3, 60, 60, "10%", $white);

/*输出图像*/

header("content-type:image/png");

imagepng($image);

/*释放资源*/

imagedestroy($image);

?>

效果:

01030BI7-0.png?20149115735

2、对图片进行缩放

原图大小

1.png

缩放后的大小

test.png

效果:

bb17f946094255e22ed067f12dea1456.png

www.bkjia.comtrueTechArticlePHP实现绘制3D扇形统计图及图片缩放实例, 1、利用php gd库的函数绘制3D扇形统计图 php header(“content-type”,”text/html;charset=utf-8″); /*扇形统计图…

转载地址:http://vkyhp.baihongyu.com/

你可能感兴趣的文章
人需要治愈
查看>>
linux中configure文件默认执行结果所在位置
查看>>
Spring MVC例子
查看>>
jmeter 断言
查看>>
玩玩小爬虫——抓取时的几个小细节
查看>>
error C4996: 'fopen'
查看>>
Windows向Linux上传文件夹
查看>>
20180104-高级特性-Slice
查看>>
6个SQL Server 2005性能优化工具介绍
查看>>
nginx启动、关闭命令、重启nginx报错open() "/var/run/nginx/nginx.pid" failed
查看>>
day14 Python 内置函数、匿名函数和递归函数
查看>>
BZOJ 3097 Hash Killer I
查看>>
UINavigationController的视图层理关系
查看>>
html阴影效果怎么做,css 内阴影怎么做
查看>>
宏观经济
查看>>
译:面试投行的20个Java问题
查看>>
综合练习:词频统计
查看>>
BZOJ1026: [SCOI2009]windy数
查看>>
ASP.NET应用程序和ASP.NET网站所共有的文件: App_Browsers 等
查看>>
ASP.NET杂货店实战视频 VS2010+SQL2008 三层架构设计开发讲解
查看>>