diff --git a/pdf.js b/pdf.js index 0ef66c40b..a7de0bb35 100644 --- a/pdf.js +++ b/pdf.js @@ -2851,7 +2851,7 @@ var CanvasGraphics = (function() { } else { text = Fonts.charsToUnicode(text); this.ctx.translate(this.current.x, -1 * this.current.y); - this.ctx.fillText(Fonts.charsToUnicode(text), 0, 0); + this.ctx.fillText(text, 0, 0); this.current.x += this.ctx.measureText(text).width; }