Writes the chart as an PNG file.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual void WritePNG(
Stream os,
int width,
int height
)
Public Overridable Sub WritePNG (
os As Stream,
width As Integer,
height As Integer
)
public:
virtual void WritePNG(
Stream^ os,
int width,
int height
)
abstract WritePNG :
os : Stream *
width : int *
height : int -> unit
override WritePNG :
os : Stream *
width : int *
height : int -> unit
Parameters
- os
- Type: System.IOStream
A Stream containing the output stream to which the PNG image
is to be written.
- width
- Type: SystemInt32
An int which specifies the width of the output image in pixels.
- height
- Type: SystemInt32
An int which specifies the height of the output image in pixels.
See Also