文字

rrd_graph

(PECL rrd >= 0.9.0)

rrd_graphCreates image from a data.

说明

array rrd_graph ( string $filename , array $options )

Creates image for a particular data from RRD file.

参数

filename

The filename to output the graph to. This will generally end in either .png, .svg or .eps, depending on the format you want to output.

options

Options for generating image. See man page of rrd graph for all possible options. All options (data definitions, variable defintions, etc.) are allowed.

返回值

Array with information about generated image is returned, FALSE when error occurs.

用户评论:

[#1] info at ukee dot nl [2015-02-27 09:39:40]

When using style features like:  --font TITLE:13:Times
use in your code: --font=TITLE:13:Times

the "=" is missing in the documentation

[#2] Anonymous [2013-07-30 23:16:21]

When I add 

--font AXIS:8:

into $options, 

I receive the next error:

PNG creation error: unknown option '--font AXIS:8:'

According to docs from rrdtool site the right syntax is:

[-n|--font FONTTAG:size:[font]]

This lets you customize which font to use for the various text elements on the RRD graphs. DEFAULT sets the default value for all elements, TITLE for the title, AXIS for the axis labels, UNIT for the vertical unit label, LEGEND for the graph legend, WATERMARK for the watermark on the edge of the graph.

Use Times for the title: --font TITLE:13:Times

Note that you need to quote the argument to --font if the font-name contains whitespace: --font "TITLE:13:Some Font"

If you do not give a font string you can modify just the size of the default font: --font TITLE:13:.

[#3] Dk [2013-07-05 17:55:36]

You can get the latest RRD Error by simply doing print_r(rrd_error()) immediately after the rrd_graph() call.

[#4] Matt C [2012-05-13 08:38:59]

Note; apache server requires write access to the folder in which the image is to be created otherwise no image file is produced, and (unhelpfully) no error is generated.

上一篇: 下一篇: