Writes the chart as an PNG file.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual void WritePNG(
	Stream os,
	int width,
	int height
)
Visual Basic (Declaration)
Public Overridable Sub WritePNG ( _
	os As Stream, _
	width As Integer, _
	height As Integer _
)
Visual C++
public:
virtual void WritePNG(
	Stream^ os, 
	int width, 
	int height
)

Parameters

os
Type: System.IO..::.Stream
A Stream containing the output stream to which the PNG image is to be written.
width
Type: System..::.Int32
An int which specifies the width of the output image in pixels.
height
Type: System..::.Int32
An int which specifies the height of the output image in pixels.

See Also