Export & Save¶
Export your drawings in multiple formats.
SVG Export¶
Export as scalable vector graphics:
val svg = controller.exportSvg()
PNG Export¶
Export as raster image:
controller.saveBitmap()
JSON Export¶
Save drawing state:
val json = controller.exportPath()
See Export Guide for detailed information.