ActionScript 3 - import SVG file

Does anyone know any libraries or tools for importing an SVG file into ActionScript on the fly? I need to be able to import an SVG file into flash and convert it to a movie clip or preferably to a flat three-dimensional object. The ultimate goal here is to implement an extended reality vector file.

+5
source share
2 answers

A large library for this can be downloaded here: http://code.google.com/p/as3svgrendererlib/ It is easy to implement and reliable. Please note that there are two ways to implement the code. I prefer the following because it gives you more control:

     private function loadSVG(url:String):void {
        ProcessExecutor.instance.initialize(stage);
        ProcessExecutor.instance.percentFrameProcessingTime = 0.9;

        loader = new URLLoader();
        loader.dataFormat = URLLoaderDataFormat.TEXT;
        loader.addEventListener(Event.COMPLETE, svgLoaded, false, 0, true);

        try {
            loader.load(new URLRequest(url));
        } catch (error:Error) {
            trace(error);
        }
    }   
    private function svgLoaded(e:Event):void {
        var svgString:String = loader.data as String;
        var svgDocument:SVGDocument = new SVGDocument();
        svgDocument.parse(svgString);

        this.addChild(svgDocument);
    }

, SVG .

public function loadSVG(url:String) {
        ProcessExecutor.instance.initialize(stage);
        ProcessExecutor.instance.percentFrameProcessingTime = 0.9;

        var svgDocument:SVGDocument = new SVGDocument();
        svgDocument.load(url);
        addChild(svgDocument);
    }

: 1. , SVG, 0 SVG. , SVG , AS3. , ScaleX scaleY SVG. 2. , . , , : yourDisplayClass.addEventListener(Event.ADDED_TO_STAGE, loadYourSVGs);

, , 3D-. Away3D, bitmapmaterial Sprite3D. Sprite3D . , 3D- MovieClips, 3D-. , :

public function movieClipToBitmapMaterial(mc:MovieClip):BitmapMaterial {
        var bmData:BitmapData = new BitmapData(mc.width, mc.height, true, 0xFFFFFF);
        bmData.draw(displayObject);
        return new BitmapMaterial(bmData);
    }

, SVG.

, , , , , , .

, ! .

PS: SWC . , shaunhusain . , 3D-.

+6

,

:

  • name.svg illustartror.
  • "name.ai"
  • -, .
-3

All Articles