Any support to SVG would be very useful to save in file as read/write from VectorDrawing
Hope that is working in this way.
Thanks

Code: Select all
Result = SvgVectorOutput(Filename$, Width.d, Height.d [, Unit])
Code: Select all
*scene.AVGScene = CreateAVGScene(800, 600)
SVG = AVGCreateObject(*scene,100,0,"Tiger")
SvgLoad(*scene,SVG,"./tiger.svg",0,#PB_Image_Transparent,600,600)
If StartVectorDrawing(SvgVectorOutput("newTiger.svg", 800, 600))
AVGRenderScene(*scene)
StopVectorDrawing()
EndIf