Fixes SVG transforms on restore

This commit is contained in:
Yury Delendik 2014-06-19 23:18:04 -05:00
parent 9a28b8a412
commit 834f466c05

View File

@ -132,6 +132,12 @@ var SVGGraphics = (function SVGGraphicsClosure(ctx) {
restore: function SVGGraphics_restore() {
this.transformMatrix = this.transformStack.pop();
this.current = this.extraStack.pop();
this.tgrp = document.createElementNS(NS, 'svg:g');
this.tgrp.setAttributeNS(null, 'id', 'transform');
this.tgrp.setAttributeNS(null, 'transform',
'matrix(' + this.transformMatrix + ')');
this.pgrp.appendChild(this.tgrp);
},
group: function SVGGraphics_group(items) {
@ -669,7 +675,6 @@ var SVGGraphics = (function SVGGraphicsClosure(ctx) {
},
rectangle: function SVGGraphics_rectangle(x, y, width, height) {
this.save();
var current = this.current;
if (width < 0) {
x = x + width;