1

我想使用 php 创建图形。我已经测试了 jpgraph 示例。但它显示错误,如

> The image “http://localhost/test/jpgraphtest.php” cannot be displayed
> because it contains errors.

<?php
include('phpgraphlib.php');
$graph = new PHPGraphLib(500,350);
$data = array(12124, 5535, 43373, 22223, 90432, 23332, 15544, 24523,
 32778, 38878, 28787, 33243, 34832, 32302);
$graph->addData($data);
$graph->setTitle('Widgets Produced');
$graph->setGradient('red', 'maroon');
$graph->createGraph();
?>
4

1 回答 1

2

检查此链接,我认为它很完美。

http://pchart.sourceforge.net/

(你也应该配置 php 以启用图像创建)。
在 Windows 中,您将在 php.ini 中包含 GD2 DLL php_gd2.dll 作为扩展。GD1 DLL php_gd.dll 在 PHP 4.3.2 中被移除。另请注意,首选的真彩色图像函数,例如 imagecreatetruecolor(),需要 GD2。

检查这些链接。 http://www.php.net/manual/en/image.requirements.php
http://www.php.net/manual/en/image.installation.php
http://www.php.net/manual/ en/image.configuration.php 示例:

ex01

ex02

于 2013-05-06T05:10:55.600 回答