I determined using the core api that the method "svgCanvas.importImage(url) can import base64 encoded images.
But the embedded API does not expose this method which is private. It also seems i can not use any of the methods that method uses (svgFromgJson, etc).
Does anyone have advice on how I can load a base 64 string representing an image when the embedded svg-edit starts up? I am thinking to just wrap that string inside an < image> tag in a mock svg file and import that way..