我要做的是从 csv 文件中加载一些值,并将它们用作 x、y 值来绘制一些矩形。
我正在加载文件,但不是显示图像,而是输出原始图像数据。我知道在 html 代码中我可以使用
<img scr="foo.php"></script>
正确显示图像,但我不知道如何使用它根据 csv 文件中的每一行数据绘制多个矩形。请帮忙。
csv代码
20,40,60,80
50,100,150,175
索引 php 代码
<html>
<body>
<?php
include("parse.php");
?>
</body>
</html>
解析php代码
<?php
include("draw.php");
$file = fopen("data.csv", "r");
while (!feof($file)) {
$line = fgetcsv($file);
drawGraph($line[0], $line[1], $line[2], $line[3]);
}
fclose($file);
?>
绘制php代码
<?php
function drawGraph($xPos, $yPos, $xxPos, $yyPos) {
//create a 200 x 200 canvas image
$canvas = imagecreatetruecolor(200, 200);
//set canvas background to white
$white = imagecolorallocate($canvas, 255, 255, 255);
imagefill($canvas, 0, 0, $white);
//create colors
$pink = imagecolorallocate($canvas, 255, 105, 180);
//draw rectangles
imagerectangle($canvas, $xPos, $yPos, $xxPos, $yyPos, $pink);
//ERROR - following line displays raw data of image not the actural image
imagepng($canvas);
imagedestroy($canvas);
}
?>