Skip to content

Commit

Permalink
Merge pull request mozilla#861 from notmasteryet/issue-840
Browse files Browse the repository at this point in the history
(mozilla#840) fix font stretching and overlapping characters encoding
  • Loading branch information
vingtetun committed Dec 2, 2011
2 parents b958fd4 + 05c1f68 commit c0291e9
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/canvas.js
Expand Up @@ -575,7 +575,7 @@ var CanvasGraphics = (function canvasGraphics() {
ctx.scale(1, -1);
ctx.translate(current.x, -1 * current.y);
ctx.transform.apply(ctx, fontMatrix);
ctx.scale(1 / textHScale, 1);
ctx.scale(textHScale, 1);
},
getTextGeometry: function canvasGetTextGeometry() {
var geometry = {};
Expand Down Expand Up @@ -651,7 +651,7 @@ var CanvasGraphics = (function canvasGraphics() {
ctx.transform.apply(ctx, current.textMatrix);
ctx.translate(current.x, current.y);

ctx.scale(1 / textHScale, 1);
ctx.scale(textHScale, 1);
for (var i = 0; i < glyphsLength; ++i) {

var glyph = glyphs[i];
Expand Down
16 changes: 12 additions & 4 deletions src/fonts.js
Expand Up @@ -1705,10 +1705,18 @@ var Font = (function Font() {

var cidToGidMap = properties.cidToGidMap || [];
var gidToCidMap = [0];
for (var j = cidToGidMap.length - 1; j >= 0; j--) {
var gid = cidToGidMap[j];
if (gid)
gidToCidMap[gid] = j;
if (cidToGidMap.length > 0) {
for (var j = cidToGidMap.length - 1; j >= 0; j--) {
var gid = cidToGidMap[j];
if (gid)
gidToCidMap[gid] = j;
}
// filling the gaps using CID above the CIDs currently used in font
var nextCid = cidToGidMap.length;
for (var i = 1; i < numGlyphs; i++) {
if (!gidToCidMap[i])
gidToCidMap[i] = nextCid++;
}
}

var glyphs = [], ids = [];
Expand Down
1 change: 1 addition & 0 deletions test/pdfs/.gitignore
Expand Up @@ -16,3 +16,4 @@
!alphatrans.pdf
!devicen.pdf
!cmykjpeg.pdf
!issue840.pdf
Binary file added test/pdfs/issue840.pdf
Binary file not shown.
6 changes: 6 additions & 0 deletions test/test_manifest.json
Expand Up @@ -290,5 +290,11 @@
"link": true,
"rounds": 1,
"type": "eq"
},
{ "id": "issue840",
"file": "pdfs/issue840.pdf",
"md5": "20d88011dd7e3c4fb5274979094dab93",
"rounds": 1,
"type": "eq"
}
]

0 comments on commit c0291e9

Please sign in to comment.