时间:2021-05-26
本文实例讲述了PHP生成条形图的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
<?php
// create an array of values for the chart. These values
// could come from anywhere, POST, GET, database etc.
$values = array(23,32,35,57,12,3,36,54,32,15,43,24,30);
// now we get the number of values in the array. this will
// tell us how many columns to plot
$columns = count($values);
// set the height and width of the graph image
$width = 300;
$height = 200;
// Set the amount of space between each column
$padding = 5;
// Get the width of 1 column
$column_width = $width / $columns ;
// set the graph color variables
$im = imagecreate($width,$height);
$gray = imagecolorallocate ($im,0xcc,0xcc,0xcc);
$gray_lite = imagecolorallocate ($im,0xee,0xee,0xee);
$gray_dark = imagecolorallocate ($im,0x7f,0x7f,0x7f);
$white = imagecolorallocate ($im,0xff,0xff,0xff);
// set the background color of the graph
imagefilledrectangle($im,0,0,$width,$height,$white);
// Calculate the maximum value we are going to plot
$max_value = max($values);
// loop over the array of columns
for($i=0;$i<$columns;$i++)
{
// set the column hieght for each value
$column_height = ($height / 100) * (( $values[$i] / $max_value)
*100);
// now the coords
$x1 = $i*$column_width;
$y1 = $height-$column_height;
$x2 = (($i+1)*$column_width)-$padding;
$y2 = $height;
// write the columns over the background
imagefilledrectangle($im,$x1,$y1,$x2,$y2,$gray);
// This gives the columns a little 3d effect
imageline($im,$x1,$y1,$x1,$y2,$gray_lite);
imageline($im,$x1,$y2,$x2,$y2,$gray_lite);
imageline($im,$x2,$y1,$x2,$y2,$gray_dark);
}
// set the correct png headers
header ("Content-type: image/png");
// spit the image out the other end
imagepng($im);
?>
运行效果如下图所示:
希望本文所述对大家的PHP程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
条形图经常用来描述一类数据的变化情况,将制作漂亮条形图。在某些特殊情况下,需要将数据反转排序。 1、输入需要生成条状图的数据。 2、选中数据生成条状
条形图经常用来描述一类数据的变化情况,我们将制作漂亮条形图。在某些特殊情况下,需要将数据反转排序。1、输入需要生成条状图的数据。2、选中数据生成条状图。3、设置
前言函数barplot()可以绘制条形图,其格式为barplot(height)height是一个向量或者矩阵,使用horiz=TRUE可以生成一个水平的条形图
还在为Excel分类标签间隔式条形图而苦恼吗,下面教你Excel分类标签间隔式条形图,让你告别Excel分类标签间隔式条形图的烦恼。 思路:添加辅助列条形
日常办公、学习、生活中,我们经常会用到word文档中的条形统计图,而我们在进行Word操作时,有时需要插入条形图,下面小编就为大家介绍word条形图制作方法,不