canvas2svg icon indicating copy to clipboard operation
canvas2svg copied to clipboard

image opacity + fix

Open murkle opened this issue 6 years ago • 0 comments

Image opacity can be easily supported by adding the last line here:

       } else if (image.nodeName === "CANVAS" || image.nodeName === "IMG") {
            //canvas or image
            svgImage = this.__createElement("image");
            svgImage.setAttribute("opacity", this.globalAlpha || 1);

murkle avatar Nov 28 '17 22:11 murkle