diff --git a/src/utils/SVG2Canvas.js b/src/utils/SVG2Canvas.js index 30ab5bc..1da3f40 100644 --- a/src/utils/SVG2Canvas.js +++ b/src/utils/SVG2Canvas.js @@ -1,15 +1,17 @@ -var SVG2Canvas = function () {}; +import Vector from '../geom/Vector'; +import {setCanvasSize, rgb2hsb, colorToRGBA} from './lib'; +import SVGImage from '../painteditor/SVGImage'; -SVG2Canvas.endp; -SVG2Canvas.startp; -SVG2Canvas.curveoptions = ['C', 'c', 's', 'S']; -SVG2Canvas.qcurveoptions = ['Q', 'q', 'T', 't']; -SVG2Canvas.acurve = false; -SVG2Canvas.aqcurve = false; -SVG2Canvas.lastcxy; -SVG2Canvas.svgerror; +export let endp; +let startp; +export let curveoptions = ['C', 'c', 's', 'S']; +let qcurveoptions = ['Q', 'q', 'T', 't']; +let acurve = false; +let aqcurve = false; +export let lastcxy; +export let svgerror; -SVG2Canvas.strokevalues = { +export let strokevalues = { 'stroke-width': 1, 'stroke-linecap': 'butt', 'stroke': 'rgba(0, 0, 0,0)', @@ -20,950 +22,11 @@ SVG2Canvas.strokevalues = { 'stroke-opacity': 1 }; -//////////////////////////////////////////////////////// -// Drawing Mask and Objects -//////////////////////////////////////////////////////// - -SVG2Canvas.drawInCanvas = function (spr) { - SVG2Canvas.svgerror = false; - setCanvasSize(spr.outline, spr.originalImg.width, spr.originalImg.height); - var ctx = spr.outline.getContext('2d'); - SVG2Canvas.drawImage(spr.svg, ctx); -}; - -SVG2Canvas.drawLayers = function (svg, ctx, fcn) { - for (var i = 0; i < svg.childElementCount; i++) { - var elem = svg.childNodes[i]; - fcn(elem, ctx); - } -}; - -SVG2Canvas.drawImage = function (svg, ctx) { - for (var i = 0; i < svg.childElementCount; i++) { - SVG2Canvas.drawLayer(svg.childNodes[i], ctx); - } -}; - -SVG2Canvas.drawLayer = function (elem, ctx) { - // svg no fill means black - ctx.fillStyle = !elem.getAttribute('fill') ? - 'black' : - (elem.getAttribute('fill') == 'none') ? 'rgba(0, 0, 0,0)' : elem.getAttribute('fill'); - if (elem.getAttribute('opacity')) { - ctx.fillStyle = colorToRGBA(ctx.fillStyle, elem.getAttribute('opacity')); - } - ctx.strokeStyle = !elem.getAttribute('stroke') ? 'rgba(0, 0, 0,0)' : elem.getAttribute('stroke'); - ctx.lineCap = elem.getAttribute('stroke-linecap') ? - elem.getAttribute('stroke-linecap') : - SVG2Canvas.strokevalues['stroke-linecap']; - ctx.lineWidth = elem.getAttribute('stroke-width') ? - Number(elem.getAttribute('stroke-width')) : - Number(SVG2Canvas.strokevalues['stroke-width']); - ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? - elem.getAttribute('stroke-miterlimit') : - SVG2Canvas.strokevalues['stroke-miterlimit']; - ctx.linejoin = elem.getAttribute('stroke-linejoin') ? - elem.getAttribute('stroke-linejoin') : - SVG2Canvas.strokevalues['stroke-linejoin']; - SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawLayer); -}; - -SVG2Canvas.drawElementHole = function (elem, ctx) { - ctx.fillStyle = (!elem.getAttribute('fill') || - (elem.getAttribute('fill') == 'none')) ? 'black' : elem.getAttribute('fill'); - ctx.strokeStyle = !elem.getAttribute('stroke') ? 'rgba(0, 0, 0,0)' : elem.getAttribute('stroke'); - ctx.lineCap = elem.getAttribute('stroke-linecap') ? - elem.getAttribute('stroke-linecap') : - SVG2Canvas.strokevalues['stroke-linecap']; - ctx.lineWidth = elem.getAttribute('stroke-width') ? - Number(elem.getAttribute('stroke-width')) : - Number(SVG2Canvas.strokevalues['stroke-width']); - ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? - elem.getAttribute('stroke-miterlimit') : - SVG2Canvas.strokevalues['stroke-miterlimit']; - ctx.linejoin = elem.getAttribute('stroke-linejoin') ? - elem.getAttribute('stroke-linejoin') : - SVG2Canvas.strokevalues['stroke-linejoin']; - if (elem.tagName) { - SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawElementHole); - } else { - // drawElementMask no tag name - } -}; - -SVG2Canvas.drawElementMask = function (elem, ctx) { - if (elem.nodeName == 'image') { - return; - } - if (elem.nodeName == 'clipPath') { - return; - } - if (elem.id.indexOf('pathborder_image') > -1) { - ctx.fillStyle = 'white'; - } else { - ctx.fillStyle = (elem.getAttribute('fill') == 'none') ? 'rgba(0, 0, 0,0)' : 'white'; - } - ctx.strokeStyle = elem.getAttribute('stroke') ? 'white' : 'rgba(0, 0, 0,0)'; - ctx.lineCap = elem.getAttribute('stroke-linecap') ? - elem.getAttribute('stroke-linecap') : - SVG2Canvas.strokevalues['stroke-linecap']; - ctx.lineWidth = elem.getAttribute('stroke-width') ? - Number(elem.getAttribute('stroke-width')) : - Number(SVG2Canvas.strokevalues['stroke-width']); - ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? - elem.getAttribute('stroke-miterlimit') : - SVG2Canvas.strokevalues['stroke-miterlimit']; - ctx.linejoin = elem.getAttribute('stroke-linejoin') ? - elem.getAttribute('stroke-linejoin') : - SVG2Canvas.strokevalues['stroke-linejoin']; - SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawElementMask); -}; - -SVG2Canvas.drawElementOutline = function (elem, ctx) { - if (elem.nodeName == 'image') { - return; - } - if (elem.nodeName == 'clipPath') { - return; - } - if (elem.id.indexOf('pathborder_image') > -1) { - ctx.fillStyle = Settings.spriteOutlineColor; - } else { - ctx.fillStyle = (elem.getAttribute('fill') == 'none') ? 'rgba(0, 0, 0,0)' : Settings.spriteOutlineColor; - } - ctx.strokeStyle = Settings.spriteOutlineColor; - ctx.lineCap = 'round'; - ctx.lineWidth = elem.getAttribute('stroke-width') ? Number(elem.getAttribute('stroke-width')) + 12 : 12; - ctx.miterLimit = 2; - ctx.linejoin = 'round'; - SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawElementOutline); -}; - -SVG2Canvas.drawBorder = function (svg, ctx) { - for (var i = 0; i < svg.childElementCount; i++) { - SVG2Canvas.drawElementOutline(svg.childNodes[i], ctx); - } -}; - -SVG2Canvas.drawWaterMark = function (svg, ctx) { - for (var i = 0; i < svg.childElementCount; i++) { - var elem = svg.childNodes[i]; - if (elem.tagName == 'g') { - SVG2Canvas.drawWaterMark(elem, ctx); - } else { - SVG2Canvas.drawObjectWaterMark(elem, ctx); - } - } -}; - -SVG2Canvas.drawObjectWaterMark = function (elem, ctx) { - if (elem.nodeName == 'image') { - return; - } - if (elem.nodeName == 'clipPath') { - return; - } - if (elem.id.indexOf('pathborder_image') > -1) { - ctx.fillStyle = 'black'; - } - var fill = elem.getAttribute('fill'); - ctx.fillStyle = (fill == 'none') ? 'rgba(0, 0, 0,0)' : 'black'; - ctx.strokeStyle = elem.getAttribute('stroke') ? 'black' : 'rgba(0, 0, 0,0)'; - ctx.lineCap = 'round'; - ctx.lineWidth = elem.getAttribute('stroke-width') ? - Number(elem.getAttribute('stroke-width')) : - Number(SVG2Canvas.strokevalues['stroke-width']); - ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? - elem.getAttribute('stroke-miterlimit') : - SVG2Canvas.strokevalues['stroke-miterlimit']; - ctx.linejoin = 'round'; - if (ctx.lineWidth < 2) { - ctx.lineWidth = 2; - } - ctx.save(); - SVG2Canvas.processXMLnode(elem, ctx); - ctx.restore(); - if (skipFill()) { - return; - } - ctx.save(); - ctx.fillStyle = 'white'; - ctx.strokeStyle = 'rgba(0, 0, 0,0)'; - ctx.globalCompositeOperation = 'destination-out'; - SVG2Canvas.processXMLnode(elem, ctx); - ctx.restore(); - function skipFill () { - if (elem.id.indexOf('pathborder_image') > -1) { - return false; - } - if (fill == 'none') { - return true; - } - if (!fill) { - return true; - } - if ((fill == '#080808') || (fill == '#000000')) { - return true; - } - if (fill == 'rgba(0, 0, 0, 0)') { - return true; - } - var brightness = rgb2hsb(fill)[2]; - return (brightness < 0.25); - } -}; - -//////////////////////////////////////////////////////// -// Drawing SVG path commands -//////////////////////////////////////////////////////// - - -SVG2Canvas.processXMLnode = function (elem, ctx, fcn) { - if (!elem) { - return; - } - switch (elem.tagName) { - case 'g': - SVG2Canvas.drawLayers(elem, ctx, fcn); - break; - case 'text': - SVG2Canvas.drawText(elem, ctx); - break; - case 'image': - var p = elem.parentNode; - while (p.tagName != 'svg') { - p = p.parentNode; - } - SVGImage.draw(elem, p.getElementById('pathborder_' + elem.id), ctx); - break; - case 'clipPath': - break; - case 'line': - SVG2Canvas.drawLine(elem, ctx); - break; - case 'rect': - SVG2Canvas.drawRect(elem, ctx); - break; - case 'ellipse': - SVG2Canvas.drawEllipse(elem, ctx); - break; - case 'circle': - SVG2Canvas.drawCircle(elem, ctx); - break; - case 'polygon': - SVG2Canvas.drawStraightLines(elem, ctx); - break; - case 'path': - SVG2Canvas.renderPath(elem, ctx); - break; - case 'polyline': - SVG2Canvas.drawPolyline(elem, ctx); - break; - default: - SVG2Canvas.svgerror = true; - break; - } -}; - -SVG2Canvas.drawRect = function (shape, ctx) { - ctx.save(); - var x = Number(shape.getAttribute('x')); - var y = Number(shape.getAttribute('y')); - var w = Number(shape.getAttribute('width')); - var h = Number(shape.getAttribute('height')); - if (ctx.strokeStyle && (ctx.strokeStyle != 'rgba(0, 0, 0,0)')) { - ctx.strokeRect(x, y, w, h); - } - if (ctx.fillStyle && (ctx.fillStyle != 'rgba(0, 0, 0,0)')) { - ctx.fillRect(x, y, w, h); - } - ctx.restore(); -}; - -SVG2Canvas.drawLine = function (shape, ctx) { - var x1 = Number(shape.getAttribute('x1')); - var y1 = Number(shape.getAttribute('y1')); - var x2 = Number(shape.getAttribute('x2')); - var y2 = Number(shape.getAttribute('y2')); - ctx.beginPath(); - ctx.moveTo(x1, y1); - ctx.lineTo(x2, y2); - ctx.stroke(); - ctx.closePath(); -}; - -SVG2Canvas.drawEllipse = function (shape, ctx) { - var rx = Number(shape.getAttribute('rx')); - var ry = Number(shape.getAttribute('ry')); - var cx = Number(shape.getAttribute('cx')); - var cy = Number(shape.getAttribute('cy')); - var kappa = (Math.sqrt(2) - 1) / 3 * 4; - var d = [['M', cx - rx, cy], - ['C', cx - rx, cy - ry * kappa, cx - rx * kappa, cy - ry, cx, cy - ry], - ['C', cx + rx * kappa, cy - ry, cx + rx, cy - ry * kappa, cx + rx, cy], - ['C', cx + rx, cy + ry * kappa, cx + rx * kappa, cy + ry, cx, cy + ry], - ['C', cx - rx * kappa, cy + ry, cx - rx, cy + ry * kappa, cx - rx, cy]]; - d = SVG2Canvas.arrayToString(d); - var commands = SVG2Canvas.getCommandList(d); - if (!commands) { - return; - } - SVG2Canvas.acurve = false; - SVG2Canvas.aqcurve = false; - ctx.save(); - ctx.beginPath(); - for (var i = 0; i < commands.length; i++) { - SVG2Canvas.drawCommand(ctx, commands[i]); - } - if (commands[commands.length - 1].indexOf('z') > -1) { - ctx.closePath(); - } - ctx.fill(); - ctx.stroke(); - ctx.restore(); -}; - -SVG2Canvas.drawCircle = function (shape, ctx) { - var r = Number(shape.getAttribute('r')); - var cx = Number(shape.getAttribute('cx')); - var cy = Number(shape.getAttribute('cy')); - ctx.save(); - ctx.beginPath(); - ctx.arc(cx, cy, r, 0, Math.PI * 2, false); - ctx.closePath(); - ctx.fill(); - ctx.stroke(); - ctx.restore(); -}; - -SVG2Canvas.drawText = function (kid, ctx) { - ctx.font = kid.getAttribute('font-weight') + ' ' + - kid.getAttribute('font-size') + 'px ' + kid.getAttribute('font-family'); - ctx.textAlign = 'left'; - ctx.textBaseline = 'top'; - ctx.fillText(kid.textContent, 0, 0); -}; - -SVG2Canvas.renderPath = function (spr, ctx) { - var d = spr.getAttribute('d'); - var commands = SVG2Canvas.getCommandList(d); - if (!commands) { - return; - } - SVG2Canvas.acurve = false; - SVG2Canvas.aqcurve = false; - ctx.save(); - ctx.beginPath(); - for (var i = 0; i < commands.length; i++) { - SVG2Canvas.drawCommand(ctx, commands[i]); - } - if (commands[commands.length - 1].indexOf('z') > -1) { - ctx.closePath(); - } - ctx.fill(); - // fixing ios8 bug - if (ctx.globalCompositeOperation != 'destination-in') { - ctx.stroke(); - } - // end of fix - ctx.restore(); -}; - -SVG2Canvas.renderPathTips = function (spr, ctx) { - var d = spr.getAttribute('d'); - var commands = SVG2Canvas.getCommandList(d); - if (!commands) { - return; - } - SVG2Canvas.acurve = false; - SVG2Canvas.aqcurve = false; - SVG2Canvas.getAbsoluteCommand(commands[0]); - SVG2Canvas.drawTip(ctx, SVG2Canvas.endp.x, SVG2Canvas.endp.y, 4); - for (var i = 1; i < commands.length; i++) { - SVG2Canvas.getAbsoluteCommand(commands[i]); - } - SVG2Canvas.drawTip(ctx, SVG2Canvas.endp.x, SVG2Canvas.endp.y, 4); - ctx.restore(); -}; - -SVG2Canvas.drawTip = function (ctx, cx, cy, r) { - ctx.save(); - ctx.beginPath(); - ctx.arc(cx, cy, r, 0, Math.PI * 2, false); - ctx.closePath(); - ctx.fill(); - ctx.stroke(); - ctx.restore(); -}; - -SVG2Canvas.getLastPathCommand = function (spr) { - var d = spr.getAttribute('d'); - var commands = d.match(/[A-DF-Za-df-z][^A-Za-df-z]*/g); - return (commands.length > 0) ? commands[commands.length - 1].charAt(0) : null; -}; - -SVG2Canvas.isCloseDPath = function (elem) { - if (elem.tagName != 'path') { - return true; - } - if (SVG2Canvas.isCompoundPath(elem)) { - return true; - } - var d = elem.getAttribute('d'); - var commands = d.match(/[A-DF-Za-df-z][^A-Za-df-z]*/g); - if (commands.length < 2) { - return false; - } - var lastCmd = commands[commands.length - 1]; - if (lastCmd.charAt(0) == 'z') { - return true; - } - if (commands.length < 4) { - return false; - } - var firstCmd = commands[0]; - - if (lastCmd.charAt(0).toLocaleUpperCase() != lastCmd.charAt(0)) { - return false; - } - var firstdata = SVG2Canvas.splitNumericArgs(firstCmd.substr(1, firstCmd.length)); - var lastdata = SVG2Canvas.splitNumericArgs(lastCmd.substr(1, lastCmd.length)); - - if (firstdata.length < 2) { - return false; - } - if (lastdata.length < 2) { - return false; - } - - var pt1 = { - x: firstdata[firstdata.length - 2], - y: firstdata[firstdata.length - 1] - }; - var pt2 = { - x: lastdata[lastdata.length - 2], - y: lastdata[lastdata.length - 1] - }; - return Vector.len(Vector.diff(pt1, pt2)) < 10; -}; - -SVG2Canvas.isCompoundPath = function (shape) { - var paths = shape.getAttribute('d').match(/[M][^M]*/g); - if (!paths) { - return false; - } - return paths.length > 1; -}; - -SVG2Canvas.drawCommand = function (ctx, cmd) { - var key = cmd[0]; - SVG2Canvas.dispatchDrawCmd[key](ctx, cmd); - SVG2Canvas.acurve = SVG2Canvas.curveoptions.indexOf(cmd[0]) > -1; - SVG2Canvas.aqcurve = SVG2Canvas.qcurveoptions.indexOf(cmd[0]) > -1; -}; - -SVG2Canvas.splitNumericArgs = function (str) { - var res = []; - if (!str) { - return res; - } - var list = str.match(/(?:\+|-)?\d+(?:\.\d+)?(?:e(?:\+|-)?\d+)?/g); - for (var i = 0; i < list.length; i++) { - res.push(Number(list[i])); - } - return res; -}; - -// moves -SVG2Canvas.absoulteMove = function (ctx, cmd) { - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - ctx.moveTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); - SVG2Canvas.startp = SVG2Canvas.endp; -}; - -SVG2Canvas.relativeMove = function (ctx, cmd) { - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - ctx.moveTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); - SVG2Canvas.startp = SVG2Canvas.endp; -}; - -// lines -SVG2Canvas.closePath = function (ctx) { - SVG2Canvas.endp = SVG2Canvas.startp; - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.absoluteLine = function (ctx, cmd) { - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.relativeLine = function (ctx, cmd) { - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.absoluteHLine = function (ctx, cmd) { - var dx = cmd[1]; - SVG2Canvas.endp = { - x: dx, - y: SVG2Canvas.endp.y - }; - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.relativeHLine = function (ctx, cmd) { - var dx = SVG2Canvas.endp.x + cmd[1]; - SVG2Canvas.endp = { - x: dx, - y: SVG2Canvas.endp.y - }; - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.absoluteVLine = function (ctx, cmd) { - var dy = cmd[1]; - SVG2Canvas.endp = { - x: SVG2Canvas.endp.x, - y: dy - }; - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.relativeVLine = function (ctx, cmd) { - var dy = SVG2Canvas.endp.y + cmd[1]; - SVG2Canvas.endp = { - x: SVG2Canvas.endp.x, - y: dy - }; - ctx.lineTo(SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -// curves -SVG2Canvas.absoluteCurve = function (ctx, cmd) { - ctx.bezierCurveTo(cmd[1], cmd[2], cmd[3], cmd[4], cmd[5], cmd[6]); - SVG2Canvas.lastcxy = { - x: cmd[3], - y: cmd[4] - }; - SVG2Canvas.endp = { - x: cmd[5], - y: cmd[6] - }; -}; - -SVG2Canvas.relativeCurve = function (ctx, cmd) { - var pt1 = { - x: cmd[1], - y: cmd[2] - }; - var pt2 = { - x: cmd[3], - y: cmd[4] - }; - var pt3 = { - x: cmd[5], - y: cmd[6] - }; - var c1 = Vector.sum(SVG2Canvas.endp, pt1); - var c2 = Vector.sum(SVG2Canvas.endp, pt2); - SVG2Canvas.lastcxy = c2; - var endat = Vector.sum(SVG2Canvas.endp, pt3); - ctx.bezierCurveTo(c1.x, c1.y, c2.x, c2.y, endat.x, endat.y); - SVG2Canvas.endp = endat; -}; - -SVG2Canvas.absoluteSmooth = function (ctx, cmd) { - var c1 = SVG2Canvas.acurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - var c2 = { - x: cmd[1], - y: cmd[2] - }; - var endat = { - x: cmd[3], - y: cmd[4] - }; - ctx.bezierCurveTo(c1.x, c1.y, c2.x, c2.y, endat.x, endat.y); - SVG2Canvas.endp = endat; - SVG2Canvas.lastcxy = c2; -}; - -SVG2Canvas.relativeSmooth = function (ctx, cmd) { - var c1 = SVG2Canvas.acurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - var c2 = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - var endat = Vector.sum(SVG2Canvas.endp, { - x: cmd[3], - y: cmd[4] - }); - ctx.bezierCurveTo(c1.x, c1.y, c2.x, c2.y, endat.x, endat.y); - SVG2Canvas.endp = endat; - SVG2Canvas.lastcxy = c2; -}; - -// Quadratic -SVG2Canvas.absoluteQCurve = function (ctx, cmd) { - var c1 = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.endp = { - x: cmd[3], - y: cmd[4] - }; - ctx.quadraticCurveTo(c1.x, c1.y, SVG2Canvas.endp.x, SVG2Canvas.endp.y); - SVG2Canvas.lastcxy = c1; -}; - -SVG2Canvas.relativeQCurve = function (ctx, cmd) { - var c1 = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[3], - y: cmd[4] - }); - SVG2Canvas.lastcxy = c1; - ctx.quadraticCurveTo(c1.x, c1.y, SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.absoluteQSmooth = function (ctx, cmd) { - var c1 = SVG2Canvas.aqcurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.lastcxy = c1; - ctx.quadraticCurveTo(c1.x, c1.y, SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -SVG2Canvas.relativeQSmooth = function (ctx, cmd) { - var c1 = SVG2Canvas.aqcurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - SVG2Canvas.lastcxy = c1; - ctx.quadraticCurveTo(c1.x, c1.y, SVG2Canvas.endp.x, SVG2Canvas.endp.y); -}; - -//////////////////////////////////////// -// Drawing Polygon -//////////////////////////////////////// - -SVG2Canvas.drawStraightLines = function (elem, ctx) { - var points = elem.points; - ctx.save(); - ctx.beginPath(); - ctx.moveTo(points.getItem(0).x, points.getItem(0).y); - for (var i = 1; i < points.numberOfItems; i++) { - ctx.lineTo(points.getItem(i).x, points.getItem(i).y); - } - ctx.lineTo(points.getItem(0).x, points.getItem(0).y); - ctx.closePath(); - ctx.fill(); - ctx.stroke(); - ctx.restore(); -}; - -SVG2Canvas.drawPolyline = function (elem, ctx) { - var points = elem.points; - ctx.save(); - ctx.beginPath(); - ctx.moveTo(points.getItem(0).x, points.getItem(0).y); - for (var i = 1; i < points.numberOfItems; i++) { - ctx.lineTo(points.getItem(i).x, points.getItem(i).y); - } - ctx.closePath(); - ctx.fill(); - ctx.stroke(); - ctx.restore(); -}; - - -//////////////////////////////////////////////////// -// Relative to Absolute Path conversion -/////////////////////////////////////////////////// - -SVG2Canvas.setAbsolutePath = function (spr) { - var d = spr.getAttribute('d'); - var commands = SVG2Canvas.getCommandList(d); - if (!commands) { - return; - } - var absolute = SVG2Canvas.getAbsoluteCommands(commands); - var path = SVG2Canvas.arrayToString(absolute); - spr.setAttribute('d', path); -}; - -SVG2Canvas.getSVGcommands = function (shape) { - return SVG2Canvas.getCommandList(shape.getAttribute('d')); -}; - -SVG2Canvas.getCommandList = function (d) { - if (!d) { - return null; - } - var commands = d.match(/[A-DF-Za-df-z][^A-Za-df-z]*/g); - if (!commands) { - return null; - } - var res = []; - for (var i = 0; i < commands.length; i++) { - var cmd = commands[i]; - var ct = cmd.charAt(0); - var cmddata = (ct.toLowerCase() == 'z') ? [] : SVG2Canvas.splitNumericArgs(cmd.substr(1, cmd.length)); - cmddata.unshift(ct); - res.push(cmddata); - } - return res; -}; - -SVG2Canvas.arrayToString = function (res) { - var str = ''; - for (var i = 0; i < res.length; i++) { - var cmd = res[i]; - str += cmd[0]; - if (cmd.length > 1) { - cmd.shift(); - str += cmd.toString(); - } - } - return str; -}; - -SVG2Canvas.getAbsoluteCommands = function (list) { - var res = []; - for (var i = 0; i < list.length; i++) { - res.push(SVG2Canvas.getAbsoluteCommand(list[i])); - } - return res; -}; - -SVG2Canvas.getAbsoluteCommand = function (cmd) { - var key = cmd[0]; - SVG2Canvas.acurve = SVG2Canvas.curveoptions.indexOf(key) > -1; - SVG2Canvas.aqcurve = SVG2Canvas.qcurveoptions.indexOf(key) > -1; - return SVG2Canvas.dispatchAbsouluteCmd[key](cmd); -}; - -// moves -SVG2Canvas.setAbsoluteMove = function (cmd) { - SVG2Canvas.acurve = false; - SVG2Canvas.aqcurve = false; - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.startp = SVG2Canvas.endp; - SVG2Canvas.lastcxy = SVG2Canvas.endp; - return cmd; -}; - -SVG2Canvas.setRelativeMove = function (cmd) { - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.startp = SVG2Canvas.endp; - return ['M', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -// lines -SVG2Canvas.setClosePath = function (cmd) { - SVG2Canvas.endp = SVG2Canvas.startp; - return cmd; -}; - -SVG2Canvas.setAbsoluteLine = function (cmd) { - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - return cmd; -}; - -SVG2Canvas.setRelativeLine = function (cmd) { - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - return ['L', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -SVG2Canvas.setAbsoluteHLine = function (cmd) { - - SVG2Canvas.endp = { - x: cmd[1], - y: SVG2Canvas.endp.y - }; - return ['L', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -SVG2Canvas.setRelativeHLine = function (cmd) { - SVG2Canvas.endp = { - x: SVG2Canvas.endp.x + cmd[1], - y: SVG2Canvas.endp.y - }; - return ['L', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -SVG2Canvas.setAbsoluteVLine = function (cmd) { - SVG2Canvas.endp = { - x: SVG2Canvas.endp.x, - y: cmd[1] - }; - return ['L', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -SVG2Canvas.setRelativeVLine = function (cmd) { - SVG2Canvas.endp = { - x: SVG2Canvas.endp.x, - y: SVG2Canvas.endp.y + cmd[1] - }; - return ['L', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -// curves -// Cubic -SVG2Canvas.setAbsoluteCurve = function (cmd) { - SVG2Canvas.lastcxy = { - x: cmd[3], - y: cmd[4] - }; - SVG2Canvas.endp = { - x: cmd[5], - y: cmd[6] - }; - return cmd; -}; - -SVG2Canvas.setRelativeCurve = function (cmd) { - var pt1 = { - x: cmd[1], - y: cmd[2] - }; - var pt2 = { - x: cmd[3], - y: cmd[4] - }; - var pt3 = { - x: cmd[5], - y: cmd[6] - }; - var c1 = Vector.sum(SVG2Canvas.endp, pt1); - var c2 = Vector.sum(SVG2Canvas.endp, pt2); - SVG2Canvas.lastcxy = c2; - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, pt3); - return ['C', c1.x, c1.y, c2.x, c2.y, SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - -SVG2Canvas.setAbsoluteSmooth = function (cmd) { - SVG2Canvas.lastcxy = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.endp = { - x: cmd[3], - y: cmd[4] - }; - return cmd; -}; - -SVG2Canvas.setRelativeSmooth = function (cmd) { - var c1 = SVG2Canvas.acurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - var c2 = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - var endat = Vector.sum(SVG2Canvas.endp, { - x: cmd[3], - y: cmd[4] - }); - SVG2Canvas.endp = endat; - SVG2Canvas.lastcxy = c2; - // change it to absolute "C" - return ['C', c1.x, c1.y, c2.x, c2.y, endat.x, endat.y]; -}; - -// Quadratic -SVG2Canvas.setAbsoluteQCurve = function (cmd) { - SVG2Canvas.lastcxy = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.endp = { - x: cmd[3], - y: cmd[4] - }; - return cmd; -}; - -SVG2Canvas.setRelativeQCurve = function (cmd) { - SVG2Canvas.lastcxy = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[3], - y: cmd[4] - }); - return ['Q', SVG2Canvas.lastcxy.x, SVG2Canvas.lastcxy.y, null, null]; -}; - -SVG2Canvas.setAbsoluteQSmooth = function (cmd) { - var c1 = SVG2Canvas.aqcurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - SVG2Canvas.endp = { - x: cmd[1], - y: cmd[2] - }; - SVG2Canvas.lastcxy = c1; - return cmd; -}; - -SVG2Canvas.setRelativeQSmooth = function (cmd) { - SVG2Canvas.lastcxy = SVG2Canvas.aqcurve ? - Vector.sum(SVG2Canvas.endp, Vector.diff(SVG2Canvas.endp, SVG2Canvas.lastcxy)) : - SVG2Canvas.endp; - SVG2Canvas.endp = Vector.sum(SVG2Canvas.endp, { - x: cmd[1], - y: cmd[2] - }); - return ['T', SVG2Canvas.endp.x, SVG2Canvas.endp.y]; -}; - ////////////////////////////////////// // Dispatch tables ////////////////////////////////////// -SVG2Canvas.dispatchDrawCmd = { +let dispatchDrawCmd = { 'M': SVG2Canvas.absoulteMove, 'm': SVG2Canvas.relativeMove, 'L': SVG2Canvas.absoluteLine, @@ -984,7 +47,7 @@ SVG2Canvas.dispatchDrawCmd = { 'z': SVG2Canvas.closePath }; -SVG2Canvas.dispatchAbsouluteCmd = { +let dispatchAbsouluteCmd = { 'M': SVG2Canvas.setAbsoluteMove, 'm': SVG2Canvas.setRelativeMove, 'L': SVG2Canvas.setAbsoluteLine, @@ -1004,3 +67,945 @@ SVG2Canvas.dispatchAbsouluteCmd = { 'Z': SVG2Canvas.setClosePath, 'z': SVG2Canvas.setClosePath }; + + +//////////////////////////////////////////////////////// +// Drawing Mask and Objects +//////////////////////////////////////////////////////// + +export default class SVG2Canvas { + static drawInCanvas (spr) { + svgerror = false; + setCanvasSize(spr.outline, spr.originalImg.width, spr.originalImg.height); + var ctx = spr.outline.getContext('2d'); + SVG2Canvas.drawImage(spr.svg, ctx); + } + + static drawLayers (svg, ctx, fcn) { + for (var i = 0; i < svg.childElementCount; i++) { + var elem = svg.childNodes[i]; + fcn(elem, ctx); + } + } + + static drawImage (svg, ctx) { + for (var i = 0; i < svg.childElementCount; i++) { + SVG2Canvas.drawLayer(svg.childNodes[i], ctx); + } + } + + static drawLayer (elem, ctx) { + // svg no fill means black + ctx.fillStyle = !elem.getAttribute('fill') ? + 'black' : + (elem.getAttribute('fill') == 'none') ? 'rgba(0, 0, 0,0)' : elem.getAttribute('fill'); + if (elem.getAttribute('opacity')) { + ctx.fillStyle = colorToRGBA(ctx.fillStyle, elem.getAttribute('opacity')); + } + ctx.strokeStyle = !elem.getAttribute('stroke') ? 'rgba(0, 0, 0,0)' : elem.getAttribute('stroke'); + ctx.lineCap = elem.getAttribute('stroke-linecap') ? + elem.getAttribute('stroke-linecap') : + SVG2Canvas.strokevalues['stroke-linecap']; + ctx.lineWidth = elem.getAttribute('stroke-width') ? + Number(elem.getAttribute('stroke-width')) : + Number(SVG2Canvas.strokevalues['stroke-width']); + ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? + elem.getAttribute('stroke-miterlimit') : + SVG2Canvas.strokevalues['stroke-miterlimit']; + ctx.linejoin = elem.getAttribute('stroke-linejoin') ? + elem.getAttribute('stroke-linejoin') : + SVG2Canvas.strokevalues['stroke-linejoin']; + SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawLayer); + } + + static drawElementHole (elem, ctx) { + ctx.fillStyle = (!elem.getAttribute('fill') || + (elem.getAttribute('fill') == 'none')) ? 'black' : elem.getAttribute('fill'); + ctx.strokeStyle = !elem.getAttribute('stroke') ? 'rgba(0, 0, 0,0)' : elem.getAttribute('stroke'); + ctx.lineCap = elem.getAttribute('stroke-linecap') ? + elem.getAttribute('stroke-linecap') : + SVG2Canvas.strokevalues['stroke-linecap']; + ctx.lineWidth = elem.getAttribute('stroke-width') ? + Number(elem.getAttribute('stroke-width')) : + Number(SVG2Canvas.strokevalues['stroke-width']); + ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? + elem.getAttribute('stroke-miterlimit') : + SVG2Canvas.strokevalues['stroke-miterlimit']; + ctx.linejoin = elem.getAttribute('stroke-linejoin') ? + elem.getAttribute('stroke-linejoin') : + SVG2Canvas.strokevalues['stroke-linejoin']; + if (elem.tagName) { + SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawElementHole); + } else { + // drawElementMask no tag name + } + } + + static drawElementMask (elem, ctx) { + if (elem.nodeName == 'image') { + return; + } + if (elem.nodeName == 'clipPath') { + return; + } + if (elem.id.indexOf('pathborder_image') > -1) { + ctx.fillStyle = 'white'; + } else { + ctx.fillStyle = (elem.getAttribute('fill') == 'none') ? 'rgba(0, 0, 0,0)' : 'white'; + } + ctx.strokeStyle = elem.getAttribute('stroke') ? 'white' : 'rgba(0, 0, 0,0)'; + ctx.lineCap = elem.getAttribute('stroke-linecap') ? + elem.getAttribute('stroke-linecap') : + SVG2Canvas.strokevalues['stroke-linecap']; + ctx.lineWidth = elem.getAttribute('stroke-width') ? + Number(elem.getAttribute('stroke-width')) : + Number(SVG2Canvas.strokevalues['stroke-width']); + ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? + elem.getAttribute('stroke-miterlimit') : + SVG2Canvas.strokevalues['stroke-miterlimit']; + ctx.linejoin = elem.getAttribute('stroke-linejoin') ? + elem.getAttribute('stroke-linejoin') : + SVG2Canvas.strokevalues['stroke-linejoin']; + SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawElementMask); + } + + static drawElementOutline (elem, ctx) { + if (elem.nodeName == 'image') { + return; + } + if (elem.nodeName == 'clipPath') { + return; + } + if (elem.id.indexOf('pathborder_image') > -1) { + ctx.fillStyle = Settings.spriteOutlineColor; + } else { + ctx.fillStyle = (elem.getAttribute('fill') == 'none') ? 'rgba(0, 0, 0,0)' : Settings.spriteOutlineColor; + } + ctx.strokeStyle = Settings.spriteOutlineColor; + ctx.lineCap = 'round'; + ctx.lineWidth = elem.getAttribute('stroke-width') ? Number(elem.getAttribute('stroke-width')) + 12 : 12; + ctx.miterLimit = 2; + ctx.linejoin = 'round'; + SVG2Canvas.processXMLnode(elem, ctx, SVG2Canvas.drawElementOutline); + } + + static drawBorder (svg, ctx) { + for (var i = 0; i < svg.childElementCount; i++) { + SVG2Canvas.drawElementOutline(svg.childNodes[i], ctx); + } + } + + static drawWaterMark (svg, ctx) { + for (var i = 0; i < svg.childElementCount; i++) { + var elem = svg.childNodes[i]; + if (elem.tagName == 'g') { + SVG2Canvas.drawWaterMark(elem, ctx); + } else { + SVG2Canvas.drawObjectWaterMark(elem, ctx); + } + } + } + + static drawObjectWaterMark (elem, ctx) { + if (elem.nodeName == 'image') { + return; + } + if (elem.nodeName == 'clipPath') { + return; + } + if (elem.id.indexOf('pathborder_image') > -1) { + ctx.fillStyle = 'black'; + } + var fill = elem.getAttribute('fill'); + ctx.fillStyle = (fill == 'none') ? 'rgba(0, 0, 0,0)' : 'black'; + ctx.strokeStyle = elem.getAttribute('stroke') ? 'black' : 'rgba(0, 0, 0,0)'; + ctx.lineCap = 'round'; + ctx.lineWidth = elem.getAttribute('stroke-width') ? + Number(elem.getAttribute('stroke-width')) : + Number(SVG2Canvas.strokevalues['stroke-width']); + ctx.miterLimit = elem.getAttribute('stroke-miterlimit') ? + elem.getAttribute('stroke-miterlimit') : + SVG2Canvas.strokevalues['stroke-miterlimit']; + ctx.linejoin = 'round'; + if (ctx.lineWidth < 2) { + ctx.lineWidth = 2; + } + ctx.save(); + SVG2Canvas.processXMLnode(elem, ctx); + ctx.restore(); + if (skipFill()) { + return; + } + ctx.save(); + ctx.fillStyle = 'white'; + ctx.strokeStyle = 'rgba(0, 0, 0,0)'; + ctx.globalCompositeOperation = 'destination-out'; + SVG2Canvas.processXMLnode(elem, ctx); + ctx.restore(); + function skipFill () { + if (elem.id.indexOf('pathborder_image') > -1) { + return false; + } + if (fill == 'none') { + return true; + } + if (!fill) { + return true; + } + if ((fill == '#080808') || (fill == '#000000')) { + return true; + } + if (fill == 'rgba(0, 0, 0, 0)') { + return true; + } + var brightness = rgb2hsb(fill)[2]; + return (brightness < 0.25); + } + } + + //////////////////////////////////////////////////////// + // Drawing SVG path commands + //////////////////////////////////////////////////////// + + + static processXMLnode (elem, ctx, fcn) { + if (!elem) { + return; + } + switch (elem.tagName) { + case 'g': + SVG2Canvas.drawLayers(elem, ctx, fcn); + break; + case 'text': + SVG2Canvas.drawText(elem, ctx); + break; + case 'image': + var p = elem.parentNode; + while (p.tagName != 'svg') { + p = p.parentNode; + } + SVGImage.draw(elem, p.getElementById('pathborder_' + elem.id), ctx); + break; + case 'clipPath': + break; + case 'line': + SVG2Canvas.drawLine(elem, ctx); + break; + case 'rect': + SVG2Canvas.drawRect(elem, ctx); + break; + case 'ellipse': + SVG2Canvas.drawEllipse(elem, ctx); + break; + case 'circle': + SVG2Canvas.drawCircle(elem, ctx); + break; + case 'polygon': + SVG2Canvas.drawStraightLines(elem, ctx); + break; + case 'path': + SVG2Canvas.renderPath(elem, ctx); + break; + case 'polyline': + SVG2Canvas.drawPolyline(elem, ctx); + break; + default: + svgerror = true; + break; + } + } + + static drawRect (shape, ctx) { + ctx.save(); + var x = Number(shape.getAttribute('x')); + var y = Number(shape.getAttribute('y')); + var w = Number(shape.getAttribute('width')); + var h = Number(shape.getAttribute('height')); + if (ctx.strokeStyle && (ctx.strokeStyle != 'rgba(0, 0, 0,0)')) { + ctx.strokeRect(x, y, w, h); + } + if (ctx.fillStyle && (ctx.fillStyle != 'rgba(0, 0, 0,0)')) { + ctx.fillRect(x, y, w, h); + } + ctx.restore(); + } + + static drawLine (shape, ctx) { + var x1 = Number(shape.getAttribute('x1')); + var y1 = Number(shape.getAttribute('y1')); + var x2 = Number(shape.getAttribute('x2')); + var y2 = Number(shape.getAttribute('y2')); + ctx.beginPath(); + ctx.moveTo(x1, y1); + ctx.lineTo(x2, y2); + ctx.stroke(); + ctx.closePath(); + } + + static drawEllipse (shape, ctx) { + var rx = Number(shape.getAttribute('rx')); + var ry = Number(shape.getAttribute('ry')); + var cx = Number(shape.getAttribute('cx')); + var cy = Number(shape.getAttribute('cy')); + var kappa = (Math.sqrt(2) - 1) / 3 * 4; + var d = [['M', cx - rx, cy], + ['C', cx - rx, cy - ry * kappa, cx - rx * kappa, cy - ry, cx, cy - ry], + ['C', cx + rx * kappa, cy - ry, cx + rx, cy - ry * kappa, cx + rx, cy], + ['C', cx + rx, cy + ry * kappa, cx + rx * kappa, cy + ry, cx, cy + ry], + ['C', cx - rx * kappa, cy + ry, cx - rx, cy + ry * kappa, cx - rx, cy]]; + d = SVG2Canvas.arrayToString(d); + var commands = SVG2Canvas.getCommandList(d); + if (!commands) { + return; + } + acurve = false; + aqcurve = false; + ctx.save(); + ctx.beginPath(); + for (var i = 0; i < commands.length; i++) { + SVG2Canvas.drawCommand(ctx, commands[i]); + } + if (commands[commands.length - 1].indexOf('z') > -1) { + ctx.closePath(); + } + ctx.fill(); + ctx.stroke(); + ctx.restore(); + } + + static drawCircle (shape, ctx) { + var r = Number(shape.getAttribute('r')); + var cx = Number(shape.getAttribute('cx')); + var cy = Number(shape.getAttribute('cy')); + ctx.save(); + ctx.beginPath(); + ctx.arc(cx, cy, r, 0, Math.PI * 2, false); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + ctx.restore(); + } + + static drawText (kid, ctx) { + ctx.font = kid.getAttribute('font-weight') + ' ' + + kid.getAttribute('font-size') + 'px ' + kid.getAttribute('font-family'); + ctx.textAlign = 'left'; + ctx.textBaseline = 'top'; + ctx.fillText(kid.textContent, 0, 0); + } + + static renderPath = function (spr, ctx) { + var d = spr.getAttribute('d'); + var commands = SVG2Canvas.getCommandList(d); + if (!commands) { + return; + } + acurve = false; + aqcurve = false; + ctx.save(); + ctx.beginPath(); + for (var i = 0; i < commands.length; i++) { + SVG2Canvas.drawCommand(ctx, commands[i]); + } + if (commands[commands.length - 1].indexOf('z') > -1) { + ctx.closePath(); + } + ctx.fill(); + // fixing ios8 bug + if (ctx.globalCompositeOperation != 'destination-in') { + ctx.stroke(); + } + // end of fix + ctx.restore(); + } + + static renderPathTips (spr, ctx) { + var d = spr.getAttribute('d'); + var commands = SVG2Canvas.getCommandList(d); + if (!commands) { + return; + } + acurve = false; + aqcurve = false; + SVG2Canvas.getAbsoluteCommand(commands[0]); + SVG2Canvas.drawTip(ctx, endp.x, endp.y, 4); + for (var i = 1; i < commands.length; i++) { + SVG2Canvas.getAbsoluteCommand(commands[i]); + } + SVG2Canvas.drawTip(ctx, endp.x, endp.y, 4); + ctx.restore(); + } + + static drawTip (ctx, cx, cy, r) { + ctx.save(); + ctx.beginPath(); + ctx.arc(cx, cy, r, 0, Math.PI * 2, false); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + ctx.restore(); + } + + static getLastPathCommand (spr) { + var d = spr.getAttribute('d'); + var commands = d.match(/[A-DF-Za-df-z][^A-Za-df-z]*/g); + return (commands.length > 0) ? commands[commands.length - 1].charAt(0) : null; + } + + static isCloseDPath (elem) { + if (elem.tagName != 'path') { + return true; + } + if (SVG2Canvas.isCompoundPath(elem)) { + return true; + } + var d = elem.getAttribute('d'); + var commands = d.match(/[A-DF-Za-df-z][^A-Za-df-z]*/g); + if (commands.length < 2) { + return false; + } + var lastCmd = commands[commands.length - 1]; + if (lastCmd.charAt(0) == 'z') { + return true; + } + if (commands.length < 4) { + return false; + } + var firstCmd = commands[0]; + + if (lastCmd.charAt(0).toLocaleUpperCase() != lastCmd.charAt(0)) { + return false; + } + var firstdata = SVG2Canvas.splitNumericArgs(firstCmd.substr(1, firstCmd.length)); + var lastdata = SVG2Canvas.splitNumericArgs(lastCmd.substr(1, lastCmd.length)); + + if (firstdata.length < 2) { + return false; + } + if (lastdata.length < 2) { + return false; + } + + var pt1 = { + x: firstdata[firstdata.length - 2], + y: firstdata[firstdata.length - 1] + }; + var pt2 = { + x: lastdata[lastdata.length - 2], + y: lastdata[lastdata.length - 1] + }; + return Vector.len(Vector.diff(pt1, pt2)) < 10; + } + + static isCompoundPath (shape) { + var paths = shape.getAttribute('d').match(/[M][^M]*/g); + if (!paths) { + return false; + } + return paths.length > 1; + } + + static drawCommand (ctx, cmd) { + var key = cmd[0]; + dispatchDrawCmd[key](ctx, cmd); + acurve = curveoptions.indexOf(cmd[0]) > -1; + aqcurve = qcurveoptions.indexOf(cmd[0]) > -1; + } + + static splitNumericArgs (str) { + var res = []; + if (!str) { + return res; + } + var list = str.match(/(?:\+|-)?\d+(?:\.\d+)?(?:e(?:\+|-)?\d+)?/g); + for (var i = 0; i < list.length; i++) { + res.push(Number(list[i])); + } + return res; + } + + // moves + static absoulteMove (ctx, cmd) { + endp = { + x: cmd[1], + y: cmd[2] + }; + ctx.moveTo(endp.x, endp.y); + startp = endp; + } + + static relativeMove (ctx, cmd) { + endp = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + ctx.moveTo(endp.x, endp.y); + startp = endp; + } + + // lines + static closePath (ctx) { + endp = startp; + ctx.lineTo(endp.x, endp.y); + } + + static absoluteLine (ctx, cmd) { + endp = { + x: cmd[1], + y: cmd[2] + }; + ctx.lineTo(endp.x, endp.y); + } + + static relativeLine (ctx, cmd) { + endp = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + ctx.lineTo(endp.x, endp.y); + } + + static absoluteHLine (ctx, cmd) { + var dx = cmd[1]; + endp = { + x: dx, + y: endp.y + }; + ctx.lineTo(endp.x, endp.y); + } + + static relativeHLine (ctx, cmd) { + var dx = endp.x + cmd[1]; + endp = { + x: dx, + y: endp.y + }; + ctx.lineTo(endp.x, endp.y); + } + + static absoluteVLine (ctx, cmd) { + var dy = cmd[1]; + endp = { + x: endp.x, + y: dy + }; + ctx.lineTo(endp.x, endp.y); + } + + static relativeVLine (ctx, cmd) { + var dy = endp.y + cmd[1]; + endp = { + x: endp.x, + y: dy + }; + ctx.lineTo(endp.x, endp.y); + } + + // curves + static absoluteCurve (ctx, cmd) { + ctx.bezierCurveTo(cmd[1], cmd[2], cmd[3], cmd[4], cmd[5], cmd[6]); + lastcxy = { + x: cmd[3], + y: cmd[4] + }; + endp = { + x: cmd[5], + y: cmd[6] + }; + } + + static relativeCurve (ctx, cmd) { + var pt1 = { + x: cmd[1], + y: cmd[2] + }; + var pt2 = { + x: cmd[3], + y: cmd[4] + }; + var pt3 = { + x: cmd[5], + y: cmd[6] + }; + var c1 = Vector.sum(endp, pt1); + var c2 = Vector.sum(endp, pt2); + lastcxy = c2; + var endat = Vector.sum(endp, pt3); + ctx.bezierCurveTo(c1.x, c1.y, c2.x, c2.y, endat.x, endat.y); + endp = endat; + } + + static absoluteSmooth (ctx, cmd) { + var c1 = acurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + var c2 = { + x: cmd[1], + y: cmd[2] + }; + var endat = { + x: cmd[3], + y: cmd[4] + }; + ctx.bezierCurveTo(c1.x, c1.y, c2.x, c2.y, endat.x, endat.y); + endp = endat; + lastcxy = c2; + } + + static relativeSmooth (ctx, cmd) { + var c1 = acurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + var c2 = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + var endat = Vector.sum(endp, { + x: cmd[3], + y: cmd[4] + }); + ctx.bezierCurveTo(c1.x, c1.y, c2.x, c2.y, endat.x, endat.y); + endp = endat; + lastcxy = c2; + } + + // Quadratic + static absoluteQCurve (ctx, cmd) { + var c1 = { + x: cmd[1], + y: cmd[2] + }; + endp = { + x: cmd[3], + y: cmd[4] + }; + ctx.quadraticCurveTo(c1.x, c1.y, endp.x, endp.y); + lastcxy = c1; + } + + static relativeQCurve (ctx, cmd) { + var c1 = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + endp = Vector.sum(endp, { + x: cmd[3], + y: cmd[4] + }); + lastcxy = c1; + ctx.quadraticCurveTo(c1.x, c1.y, endp.x, endp.y); + } + + static absoluteQSmooth (ctx, cmd) { + var c1 = aqcurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + endp = { + x: cmd[1], + y: cmd[2] + }; + lastcxy = c1; + ctx.quadraticCurveTo(c1.x, c1.y, endp.x, endp.y); + } + + static relativeQSmooth (ctx, cmd) { + var c1 = aqcurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + endp = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + lastcxy = c1; + ctx.quadraticCurveTo(c1.x, c1.y, endp.x, endp.y); + } + + //////////////////////////////////////// + // Drawing Polygon + //////////////////////////////////////// + + static drawStraightLines (elem, ctx) { + var points = elem.points; + ctx.save(); + ctx.beginPath(); + ctx.moveTo(points.getItem(0).x, points.getItem(0).y); + for (var i = 1; i < points.numberOfItems; i++) { + ctx.lineTo(points.getItem(i).x, points.getItem(i).y); + } + ctx.lineTo(points.getItem(0).x, points.getItem(0).y); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + ctx.restore(); + } + + static drawPolyline (elem, ctx) { + var points = elem.points; + ctx.save(); + ctx.beginPath(); + ctx.moveTo(points.getItem(0).x, points.getItem(0).y); + for (var i = 1; i < points.numberOfItems; i++) { + ctx.lineTo(points.getItem(i).x, points.getItem(i).y); + } + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + ctx.restore(); + } + + + //////////////////////////////////////////////////// + // Relative to Absolute Path conversion + /////////////////////////////////////////////////// + + static setAbsolutePath (spr) { + var d = spr.getAttribute('d'); + var commands = SVG2Canvas.getCommandList(d); + if (!commands) { + return; + } + var absolute = SVG2Canvas.getAbsoluteCommands(commands); + var path = SVG2Canvas.arrayToString(absolute); + spr.setAttribute('d', path); + } + + static getSVGcommands (shape) { + return SVG2Canvas.getCommandList(shape.getAttribute('d')); + } + + static getCommandList (d) { + if (!d) { + return null; + } + var commands = d.match(/[A-DF-Za-df-z][^A-Za-df-z]*/g); + if (!commands) { + return null; + } + var res = []; + for (var i = 0; i < commands.length; i++) { + var cmd = commands[i]; + var ct = cmd.charAt(0); + var cmddata = (ct.toLowerCase() == 'z') ? [] : SVG2Canvas.splitNumericArgs(cmd.substr(1, cmd.length)); + cmddata.unshift(ct); + res.push(cmddata); + } + return res; + } + + static arrayToString (res) { + var str = ''; + for (var i = 0; i < res.length; i++) { + var cmd = res[i]; + str += cmd[0]; + if (cmd.length > 1) { + cmd.shift(); + str += cmd.toString(); + } + } + return str; + } + + static getAbsoluteCommands (list) { + var res = []; + for (var i = 0; i < list.length; i++) { + res.push(SVG2Canvas.getAbsoluteCommand(list[i])); + } + return res; + } + + static getAbsoluteCommand (cmd) { + var key = cmd[0]; + acurve = curveoptions.indexOf(key) > -1; + aqcurve = qcurveoptions.indexOf(key) > -1; + return dispatchAbsouluteCmd[key](cmd); + } + + // moves + static setAbsoluteMove (cmd) { + acurve = false; + aqcurve = false; + endp = { + x: cmd[1], + y: cmd[2] + }; + startp = endp; + lastcxy = endp; + return cmd; + } + + static setRelativeMove (cmd) { + endp = { + x: cmd[1], + y: cmd[2] + }; + startp = endp; + return ['M', endp.x, endp.y]; + } + + // lines + static setClosePath (cmd) { + endp = startp; + return cmd; + } + + static setAbsoluteLine (cmd) { + endp = { + x: cmd[1], + y: cmd[2] + }; + return cmd; + } + + static setRelativeLine = function (cmd) { + endp = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + return ['L', endp.x, endp.y]; + } + + static setAbsoluteHLine (cmd) { + + endp = { + x: cmd[1], + y: endp.y + }; + return ['L', endp.x, endp.y]; + } + + static setRelativeHLine (cmd) { + endp = { + x: endp.x + cmd[1], + y: endp.y + }; + return ['L', endp.x, endp.y]; + } + + static setAbsoluteVLine (cmd) { + endp = { + x: endp.x, + y: cmd[1] + }; + return ['L', endp.x, endp.y]; + } + + static setRelativeVLine (cmd) { + endp = { + x: endp.x, + y: endp.y + cmd[1] + }; + return ['L', endp.x, endp.y]; + } + + // curves + // Cubic + static setAbsoluteCurve (cmd) { + lastcxy = { + x: cmd[3], + y: cmd[4] + }; + endp = { + x: cmd[5], + y: cmd[6] + }; + return cmd; + } + + static setRelativeCurve (cmd) { + var pt1 = { + x: cmd[1], + y: cmd[2] + }; + var pt2 = { + x: cmd[3], + y: cmd[4] + }; + var pt3 = { + x: cmd[5], + y: cmd[6] + }; + var c1 = Vector.sum(endp, pt1); + var c2 = Vector.sum(endp, pt2); + lastcxy = c2; + endp = Vector.sum(endp, pt3); + return ['C', c1.x, c1.y, c2.x, c2.y, endp.x, endp.y]; + } + + static setAbsoluteSmooth (cmd) { + lastcxy = { + x: cmd[1], + y: cmd[2] + }; + endp = { + x: cmd[3], + y: cmd[4] + }; + return cmd; + } + + static setRelativeSmooth (cmd) { + var c1 = acurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + var c2 = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + var endat = Vector.sum(endp, { + x: cmd[3], + y: cmd[4] + }); + endp = endat; + lastcxy = c2; + // change it to absolute "C" + return ['C', c1.x, c1.y, c2.x, c2.y, endat.x, endat.y]; + } + + // Quadratic + static setAbsoluteQCurve (cmd) { + lastcxy = { + x: cmd[1], + y: cmd[2] + }; + endp = { + x: cmd[3], + y: cmd[4] + }; + return cmd; + } + + static setRelativeQCurve (cmd) { + lastcxy = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + endp = Vector.sum(endp, { + x: cmd[3], + y: cmd[4] + }); + return ['Q', lastcxy.x, lastcxy.y, null, null]; + } + + static setAbsoluteQSmooth (cmd) { + var c1 = aqcurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + endp = { + x: cmd[1], + y: cmd[2] + }; + lastcxy = c1; + return cmd; + } + + static setRelativeQSmooth (cmd) { + lastcxy = aqcurve ? + Vector.sum(endp, Vector.diff(endp, lastcxy)) : + endp; + endp = Vector.sum(endp, { + x: cmd[1], + y: cmd[2] + }); + return ['T', endp.x, endp.y]; + } +}