Platform |
Win32, x64 |
Purpose |
To begin output to a Scalable Vector Graphics (SVG) file. Scalable Vector Graphics files allow you to produce graphics file that are resolution independent. |
Syntax |
INTEGER FUNCTION OPEN_SVG@(FILE, NX, NY) |
Description |
Calling OPEN_SVG@ will direct graphics to a new SVG graphics file. SVG has the advantage of being a vector format that will scale with the resolution required. NX and NY specify the bounding box into which the graphics are to be drawn. FILE is the path of the file. This is analogous to generating printer output. This function sets the identifier of the associated graphics object to zero. Call CLOSE_SVG@(0) to terminate output to the file. |
Return value |
Returns 1 on success or zero on failure. |
Notes |
OPEN_SVG1@ is similar but allows the programmer to set the user identifier for
the associated graphics object. |
See also |