1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Merge pull request #5843 from timvandermeij/svg-commands

Enable OPS.setHScale in the SVG backend
This commit is contained in:
Jonas Jenwald 2015-03-16 12:50:07 +01:00
commit f7b3852dd5

View file

@ -518,6 +518,9 @@ var SVGGraphics = (function SVGGraphicsClosure() {
case OPS.setWordSpacing:
this.setWordSpacing(args[0]);
break;
case OPS.setHScale:
this.setHScale(args[0]);
break;
case OPS.setTextMatrix:
this.setTextMatrix(args[0], args[1], args[2],
args[3], args[4], args[5]);