简体   繁体   中英

Add SVG from URL render black image

I have a this SVG , which i am trying to load in canvas but it just render the black image, so how to solve it?

version: 2.0.0-beta.7

I have tried both method loadSVGFromString as well as loadSVGFromURL but no success:

//Using loadSVGFromString
var a = 'svg string';
fabric.loadSVGFromString(a,function(objects, options) {
  var obj = fabric.util.groupSVGElements(objects, options);
    canvas.add(obj).renderAll();
});

//using loadSVGFromURL
fabric.loadSVGFromURL('URL Here', function(objects,options) {
    var group = new fabric.Group(objects, {
        left: 50,
        top: 50,
    });
    canvas.add(group);
    canvas.renderAll();
});

checkout this codepen

"All black" svgs often is a result of some invalid or unsupported svg markup. In your case I think you should remove the fill-opacity="null" references from your svg.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM