Font renderer - get int8 instead of uint8 in composite glyphes (bug 1749563)
- it aims to fix https://bugzilla.mozilla.org/show_bug.cgi?id=1749563; - use some helper functions to get (u|i)int** values in buffer: it helps to have a clearer code; - in composite glyphes the translations values with a transformations are signed so consequently get some int8 instead of uint8; - add few TODOs.
This commit is contained in:
parent
da953f4b64
commit
74f25d2755
@ -25,19 +25,34 @@ import { getGlyphsUnicode } from "./glyphlist.js";
|
|||||||
import { StandardEncoding } from "./encodings.js";
|
import { StandardEncoding } from "./encodings.js";
|
||||||
import { Stream } from "./stream.js";
|
import { Stream } from "./stream.js";
|
||||||
|
|
||||||
function getLong(data, offset) {
|
// TODO: use DataView and its methods.
|
||||||
|
|
||||||
|
function getUint32(data, offset) {
|
||||||
return (
|
return (
|
||||||
(data[offset] << 24) |
|
((data[offset] << 24) |
|
||||||
(data[offset + 1] << 16) |
|
(data[offset + 1] << 16) |
|
||||||
(data[offset + 2] << 8) |
|
(data[offset + 2] << 8) |
|
||||||
data[offset + 3]
|
data[offset + 3]) >>>
|
||||||
|
0
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUshort(data, offset) {
|
function getUint16(data, offset) {
|
||||||
return (data[offset] << 8) | data[offset + 1];
|
return (data[offset] << 8) | data[offset + 1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getInt16(data, offset) {
|
||||||
|
return ((data[offset] << 24) | (data[offset + 1] << 16)) >> 16;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getInt8(data, offset) {
|
||||||
|
return (data[offset] << 24) >> 24;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFloat214(data, offset) {
|
||||||
|
return getInt16(data, offset) / 16384;
|
||||||
|
}
|
||||||
|
|
||||||
function getSubroutineBias(subrs) {
|
function getSubroutineBias(subrs) {
|
||||||
const numSubrs = subrs.length;
|
const numSubrs = subrs.length;
|
||||||
let bias = 32768;
|
let bias = 32768;
|
||||||
@ -51,48 +66,48 @@ function getSubroutineBias(subrs) {
|
|||||||
|
|
||||||
function parseCmap(data, start, end) {
|
function parseCmap(data, start, end) {
|
||||||
const offset =
|
const offset =
|
||||||
getUshort(data, start + 2) === 1
|
getUint16(data, start + 2) === 1
|
||||||
? getLong(data, start + 8)
|
? getUint32(data, start + 8)
|
||||||
: getLong(data, start + 16);
|
: getUint32(data, start + 16);
|
||||||
const format = getUshort(data, start + offset);
|
const format = getUint16(data, start + offset);
|
||||||
let ranges, p, i;
|
let ranges, p, i;
|
||||||
if (format === 4) {
|
if (format === 4) {
|
||||||
getUshort(data, start + offset + 2); // length
|
getUint16(data, start + offset + 2); // length
|
||||||
const segCount = getUshort(data, start + offset + 6) >> 1;
|
const segCount = getUint16(data, start + offset + 6) >> 1;
|
||||||
p = start + offset + 14;
|
p = start + offset + 14;
|
||||||
ranges = [];
|
ranges = [];
|
||||||
for (i = 0; i < segCount; i++, p += 2) {
|
for (i = 0; i < segCount; i++, p += 2) {
|
||||||
ranges[i] = { end: getUshort(data, p) };
|
ranges[i] = { end: getUint16(data, p) };
|
||||||
}
|
}
|
||||||
p += 2;
|
p += 2;
|
||||||
for (i = 0; i < segCount; i++, p += 2) {
|
for (i = 0; i < segCount; i++, p += 2) {
|
||||||
ranges[i].start = getUshort(data, p);
|
ranges[i].start = getUint16(data, p);
|
||||||
}
|
}
|
||||||
for (i = 0; i < segCount; i++, p += 2) {
|
for (i = 0; i < segCount; i++, p += 2) {
|
||||||
ranges[i].idDelta = getUshort(data, p);
|
ranges[i].idDelta = getUint16(data, p);
|
||||||
}
|
}
|
||||||
for (i = 0; i < segCount; i++, p += 2) {
|
for (i = 0; i < segCount; i++, p += 2) {
|
||||||
let idOffset = getUshort(data, p);
|
let idOffset = getUint16(data, p);
|
||||||
if (idOffset === 0) {
|
if (idOffset === 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ranges[i].ids = [];
|
ranges[i].ids = [];
|
||||||
for (let j = 0, jj = ranges[i].end - ranges[i].start + 1; j < jj; j++) {
|
for (let j = 0, jj = ranges[i].end - ranges[i].start + 1; j < jj; j++) {
|
||||||
ranges[i].ids[j] = getUshort(data, p + idOffset);
|
ranges[i].ids[j] = getUint16(data, p + idOffset);
|
||||||
idOffset += 2;
|
idOffset += 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ranges;
|
return ranges;
|
||||||
} else if (format === 12) {
|
} else if (format === 12) {
|
||||||
getLong(data, start + offset + 4); // length
|
const groups = getUint32(data, start + offset + 12);
|
||||||
const groups = getLong(data, start + offset + 12);
|
|
||||||
p = start + offset + 16;
|
p = start + offset + 16;
|
||||||
ranges = [];
|
ranges = [];
|
||||||
for (i = 0; i < groups; i++) {
|
for (i = 0; i < groups; i++) {
|
||||||
|
start = getUint32(data, p);
|
||||||
ranges.push({
|
ranges.push({
|
||||||
start: getLong(data, p),
|
start,
|
||||||
end: getLong(data, p + 4),
|
end: getUint32(data, p + 4),
|
||||||
idDelta: getLong(data, p + 8) - getLong(data, p),
|
idDelta: getUint32(data, p + 8) - start,
|
||||||
});
|
});
|
||||||
p += 12;
|
p += 12;
|
||||||
}
|
}
|
||||||
@ -126,19 +141,10 @@ function parseGlyfTable(glyf, loca, isGlyphLocationsLong) {
|
|||||||
let itemSize, itemDecode;
|
let itemSize, itemDecode;
|
||||||
if (isGlyphLocationsLong) {
|
if (isGlyphLocationsLong) {
|
||||||
itemSize = 4;
|
itemSize = 4;
|
||||||
itemDecode = function fontItemDecodeLong(data, offset) {
|
itemDecode = getUint32;
|
||||||
return (
|
|
||||||
(data[offset] << 24) |
|
|
||||||
(data[offset + 1] << 16) |
|
|
||||||
(data[offset + 2] << 8) |
|
|
||||||
data[offset + 3]
|
|
||||||
);
|
|
||||||
};
|
|
||||||
} else {
|
} else {
|
||||||
itemSize = 2;
|
itemSize = 2;
|
||||||
itemDecode = function fontItemDecode(data, offset) {
|
itemDecode = (data, offset) => 2 * getUint16(data, offset);
|
||||||
return (data[offset] << 9) | (data[offset + 1] << 1);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
const glyphs = [];
|
const glyphs = [];
|
||||||
let startOffset = itemDecode(loca, 0);
|
let startOffset = itemDecode(loca, 0);
|
||||||
@ -187,7 +193,7 @@ function compileGlyf(code, cmds, font) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let i = 0;
|
let i = 0;
|
||||||
const numberOfContours = ((code[i] << 24) | (code[i + 1] << 16)) >> 16;
|
const numberOfContours = getInt16(code, i);
|
||||||
let flags;
|
let flags;
|
||||||
let x = 0,
|
let x = 0,
|
||||||
y = 0;
|
y = 0;
|
||||||
@ -195,45 +201,57 @@ function compileGlyf(code, cmds, font) {
|
|||||||
if (numberOfContours < 0) {
|
if (numberOfContours < 0) {
|
||||||
// composite glyph
|
// composite glyph
|
||||||
do {
|
do {
|
||||||
flags = (code[i] << 8) | code[i + 1];
|
flags = getUint16(code, i);
|
||||||
const glyphIndex = (code[i + 2] << 8) | code[i + 3];
|
const glyphIndex = getUint16(code, i + 2);
|
||||||
i += 4;
|
i += 4;
|
||||||
let arg1, arg2;
|
let arg1, arg2;
|
||||||
if (flags & 0x01) {
|
if (flags & 0x01) {
|
||||||
arg1 = ((code[i] << 24) | (code[i + 1] << 16)) >> 16;
|
if (flags & 0x02) {
|
||||||
arg2 = ((code[i + 2] << 24) | (code[i + 3] << 16)) >> 16;
|
arg1 = getInt16(code, i);
|
||||||
|
arg2 = getInt16(code, i + 2);
|
||||||
|
} else {
|
||||||
|
arg1 = getUint16(code, i);
|
||||||
|
arg2 = getUint16(code, i + 2);
|
||||||
|
}
|
||||||
i += 4;
|
i += 4;
|
||||||
} else {
|
} else {
|
||||||
arg1 = code[i++];
|
if (flags & 0x02) {
|
||||||
arg2 = code[i++];
|
arg1 = getInt8(code, i++);
|
||||||
|
arg2 = getInt8(code, i++);
|
||||||
|
} else {
|
||||||
|
arg1 = code[i++];
|
||||||
|
arg2 = code[i++];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (flags & 0x02) {
|
if (flags & 0x02) {
|
||||||
x = arg1;
|
x = arg1;
|
||||||
y = arg2;
|
y = arg2;
|
||||||
} else {
|
} else {
|
||||||
x = 0;
|
x = 0;
|
||||||
y = 0; // TODO "they are points" ?
|
y = 0;
|
||||||
}
|
}
|
||||||
let scaleX = 1,
|
let scaleX = 1,
|
||||||
scaleY = 1,
|
scaleY = 1,
|
||||||
scale01 = 0,
|
scale01 = 0,
|
||||||
scale10 = 0;
|
scale10 = 0;
|
||||||
if (flags & 0x08) {
|
if (flags & 0x08) {
|
||||||
scaleX = scaleY = ((code[i] << 24) | (code[i + 1] << 16)) / 1073741824;
|
scaleX = scaleY = getFloat214(code, i);
|
||||||
i += 2;
|
i += 2;
|
||||||
} else if (flags & 0x40) {
|
} else if (flags & 0x40) {
|
||||||
scaleX = ((code[i] << 24) | (code[i + 1] << 16)) / 1073741824;
|
scaleX = getFloat214(code, i);
|
||||||
scaleY = ((code[i + 2] << 24) | (code[i + 3] << 16)) / 1073741824;
|
scaleY = getFloat214(code, i + 2);
|
||||||
i += 4;
|
i += 4;
|
||||||
} else if (flags & 0x80) {
|
} else if (flags & 0x80) {
|
||||||
scaleX = ((code[i] << 24) | (code[i + 1] << 16)) / 1073741824;
|
scaleX = getFloat214(code, i);
|
||||||
scale01 = ((code[i + 2] << 24) | (code[i + 3] << 16)) / 1073741824;
|
scale01 = getFloat214(code, i + 2);
|
||||||
scale10 = ((code[i + 4] << 24) | (code[i + 5] << 16)) / 1073741824;
|
scale10 = getFloat214(code, i + 4);
|
||||||
scaleY = ((code[i + 6] << 24) | (code[i + 7] << 16)) / 1073741824;
|
scaleY = getFloat214(code, i + 6);
|
||||||
i += 8;
|
i += 8;
|
||||||
}
|
}
|
||||||
const subglyph = font.glyphs[glyphIndex];
|
const subglyph = font.glyphs[glyphIndex];
|
||||||
if (subglyph) {
|
if (subglyph) {
|
||||||
|
// TODO: the transform should be applied only if there is a scale:
|
||||||
|
// https://github.com/freetype/freetype/blob/edd4fedc5427cf1cf1f4b045e53ff91eb282e9d4/src/truetype/ttgload.c#L1205
|
||||||
cmds.push(
|
cmds.push(
|
||||||
{ cmd: "save" },
|
{ cmd: "save" },
|
||||||
{
|
{
|
||||||
@ -241,6 +259,11 @@ function compileGlyf(code, cmds, font) {
|
|||||||
args: [scaleX, scale01, scale10, scaleY, x, y],
|
args: [scaleX, scale01, scale10, scaleY, x, y],
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (!(flags & 0x02)) {
|
||||||
|
// TODO: we must use arg1 and arg2 to make something similar to:
|
||||||
|
// https://github.com/freetype/freetype/blob/edd4fedc5427cf1cf1f4b045e53ff91eb282e9d4/src/truetype/ttgload.c#L1209
|
||||||
|
}
|
||||||
compileGlyf(subglyph, cmds, font);
|
compileGlyf(subglyph, cmds, font);
|
||||||
cmds.push({ cmd: "restore" });
|
cmds.push({ cmd: "restore" });
|
||||||
}
|
}
|
||||||
@ -250,10 +273,10 @@ function compileGlyf(code, cmds, font) {
|
|||||||
const endPtsOfContours = [];
|
const endPtsOfContours = [];
|
||||||
let j, jj;
|
let j, jj;
|
||||||
for (j = 0; j < numberOfContours; j++) {
|
for (j = 0; j < numberOfContours; j++) {
|
||||||
endPtsOfContours.push((code[i] << 8) | code[i + 1]);
|
endPtsOfContours.push(getUint16(code, i));
|
||||||
i += 2;
|
i += 2;
|
||||||
}
|
}
|
||||||
const instructionLength = (code[i] << 8) | code[i + 1];
|
const instructionLength = getUint16(code, i);
|
||||||
i += 2 + instructionLength; // skipping the instructions
|
i += 2 + instructionLength; // skipping the instructions
|
||||||
const numberOfPoints = endPtsOfContours[endPtsOfContours.length - 1] + 1;
|
const numberOfPoints = endPtsOfContours[endPtsOfContours.length - 1] + 1;
|
||||||
const points = [];
|
const points = [];
|
||||||
@ -270,7 +293,7 @@ function compileGlyf(code, cmds, font) {
|
|||||||
for (j = 0; j < numberOfPoints; j++) {
|
for (j = 0; j < numberOfPoints; j++) {
|
||||||
switch (points[j].flags & 0x12) {
|
switch (points[j].flags & 0x12) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
x += ((code[i] << 24) | (code[i + 1] << 16)) >> 16;
|
x += getInt16(code, i);
|
||||||
i += 2;
|
i += 2;
|
||||||
break;
|
break;
|
||||||
case 0x02:
|
case 0x02:
|
||||||
@ -285,7 +308,7 @@ function compileGlyf(code, cmds, font) {
|
|||||||
for (j = 0; j < numberOfPoints; j++) {
|
for (j = 0; j < numberOfPoints; j++) {
|
||||||
switch (points[j].flags & 0x24) {
|
switch (points[j].flags & 0x24) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
y += ((code[i] << 24) | (code[i + 1] << 16)) >> 16;
|
y += getInt16(code, i);
|
||||||
i += 2;
|
i += 2;
|
||||||
break;
|
break;
|
||||||
case 0x04:
|
case 0x04:
|
||||||
@ -840,11 +863,11 @@ class FontRendererFactory {
|
|||||||
static create(font, seacAnalysisEnabled) {
|
static create(font, seacAnalysisEnabled) {
|
||||||
const data = new Uint8Array(font.data);
|
const data = new Uint8Array(font.data);
|
||||||
let cmap, glyf, loca, cff, indexToLocFormat, unitsPerEm;
|
let cmap, glyf, loca, cff, indexToLocFormat, unitsPerEm;
|
||||||
const numTables = getUshort(data, 4);
|
const numTables = getUint16(data, 4);
|
||||||
for (let i = 0, p = 12; i < numTables; i++, p += 16) {
|
for (let i = 0, p = 12; i < numTables; i++, p += 16) {
|
||||||
const tag = bytesToString(data.subarray(p, p + 4));
|
const tag = bytesToString(data.subarray(p, p + 4));
|
||||||
const offset = getLong(data, p + 8);
|
const offset = getUint32(data, p + 8);
|
||||||
const length = getLong(data, p + 12);
|
const length = getUint32(data, p + 12);
|
||||||
switch (tag) {
|
switch (tag) {
|
||||||
case "cmap":
|
case "cmap":
|
||||||
cmap = parseCmap(data, offset, offset + length);
|
cmap = parseCmap(data, offset, offset + length);
|
||||||
@ -856,8 +879,8 @@ class FontRendererFactory {
|
|||||||
loca = data.subarray(offset, offset + length);
|
loca = data.subarray(offset, offset + length);
|
||||||
break;
|
break;
|
||||||
case "head":
|
case "head":
|
||||||
unitsPerEm = getUshort(data, offset + 18);
|
unitsPerEm = getUint16(data, offset + 18);
|
||||||
indexToLocFormat = getUshort(data, offset + 50);
|
indexToLocFormat = getUint16(data, offset + 50);
|
||||||
break;
|
break;
|
||||||
case "CFF ":
|
case "CFF ":
|
||||||
cff = parseCff(data, offset, offset + length, seacAnalysisEnabled);
|
cff = parseCff(data, offset, offset + length, seacAnalysisEnabled);
|
||||||
|
@ -550,14 +550,12 @@ class CompositeGlyph {
|
|||||||
pos += 4;
|
pos += 4;
|
||||||
flags ^= ARG_1_AND_2_ARE_WORDS;
|
flags ^= ARG_1_AND_2_ARE_WORDS;
|
||||||
} else {
|
} else {
|
||||||
argument1 = glyf.getUint8(pos);
|
|
||||||
argument2 = glyf.getUint8(pos + 1);
|
|
||||||
if (flags & ARGS_ARE_XY_VALUES) {
|
if (flags & ARGS_ARE_XY_VALUES) {
|
||||||
const abs1 = argument1 & 0x7f;
|
argument1 = glyf.getInt8(pos);
|
||||||
argument1 = argument1 & 0x80 ? -abs1 : abs1;
|
argument2 = glyf.getInt8(pos + 1);
|
||||||
|
} else {
|
||||||
const abs2 = argument2 & 0x7f;
|
argument1 = glyf.getUint8(pos);
|
||||||
argument2 = argument2 & 0x80 ? -abs2 : abs2;
|
argument2 = glyf.getUint8(pos + 1);
|
||||||
}
|
}
|
||||||
pos += 2;
|
pos += 2;
|
||||||
}
|
}
|
||||||
|
1
test/pdfs/bug1749563.pdf.link
Normal file
1
test/pdfs/bug1749563.pdf.link
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://bugzilla.mozilla.org/attachment.cgi?id=9258518
|
@ -6215,5 +6215,14 @@
|
|||||||
"rounds": 1,
|
"rounds": 1,
|
||||||
"type": "eq",
|
"type": "eq",
|
||||||
"annotations": true
|
"annotations": true
|
||||||
}
|
},
|
||||||
|
{ "id": "bug1749563",
|
||||||
|
"file": "pdfs/bug1749563.pdf",
|
||||||
|
"md5": "11294f6071a8dcc25b0e18953cee68fa",
|
||||||
|
"rounds": 1,
|
||||||
|
"link": true,
|
||||||
|
"firstPage": 1,
|
||||||
|
"lastPage": 1,
|
||||||
|
"type": "eq"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user