Saving JFreeChart object in a png format

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
biju

Saving JFreeChart object in a png format

Post by biju » Fri Aug 12, 2005 7:45 am

hi

I have created bar chart using JFreeChart.But I want this bar chart output into a gif or png format.how can i write this chart into these format please help me

jmoors
Posts: 7
Joined: Fri Jul 29, 2005 11:29 am

Saving JFreeChart object in a png format

Post by jmoors » Fri Aug 12, 2005 8:25 am

You can use the following method from the ChartUtilities class.

Code: Select all

public static void writeChartAsPNG(OutputStream out,
                                       JFreeChart chart,
                                       int width,
                                       int height)


[/code]

Locked