initialize()

Prepares the fglsvgcanvas library for use.

Syntax

initialize( )

Usage

This function initializes the fglsvgcanvas module usage. When the fglsvgcanvas library is no longer needed, call the finalization function fglsvgcanvas.finalize().

Note: Initialization and finalization functions can be called several times by different modules using the fglsvgcanvas library.

Example

IMPORT FGL fglsvgcanvas
FUNCTION show_svg_content()
  ...
  CALL fglsvgcanvas.initialize()
  ...
  CALL fglsvgcanvas.finalize()
END FUNCTION