aboutsummaryrefslogtreecommitdiffstats
path: root/php/generate-chart.php
blob: c19d9b4952238c22734a1d6df83239ce39334f4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
// http://wklejto.pl/913001
require "get-data.php";
header('Content-Type: image/png');

[$X_DATA, $Y_DATA] = getChartData();
require "helpers.php";
require "consts.php";
require "border.php";
require "chart.php";

drawBorder($IMG);
drawGrid($IMG);
drawChart($IMG);

imagepng($IMG);
imagedestroy($IMG);