I am trying to preload a set of SVG objects and display them using CreateJS/PreloadJS. So far I was able to display a SVG object without preloading, but as soon as I use the
I found simple solution. Just force PreloadJS to use image loader, not SVGLoader.
{src:"img/bg.svg", id:"bg", type: createjs.LoadQueue.IMAGE}
Then you can convert it
var bg = new createjs.Bitmap(loader.getResult('bg')); stage.addChild(bg);