Hi,
this is not really tested, but you can try to do the following
(installation)
a) install XMLParser from catalog
b) in monticello browser open Pharo/Athens and load latest version of Athens-SVG package
(usage)
Then you import SVG XML using Converter and paint it on a surface, which you convert to Form.
```
xmlDoc := XMLDOMParser parse: contents.
svg := AthensSVGConverter new importXMLDocument: xmlDoc.
svg transform: 'scale(0.5)'.
extent := 500 @ 500.
surface := AthensCairoSurface extent: extent.
surface drawDuring: [ :aCanvas | svg renderOn: aCanvas ].
surface asForm.
```
Peter