Compare commits

...

5 Commits

Author SHA1 Message Date
Jonas Jenwald
34136d7775
Merge pull request #19731 from Snuffleupagus/Type3-Path2D-pre-transform
Pre-apply the transform when building the `Path2D` objects for Type3-fonts
2025-03-28 16:29:18 +01:00
Jonas Jenwald
f577271908 Simplify the compileType3Glyph function to just return the Path2D objects
Originally this function would "manually" invoke the rendering commands for Type3-glyphs, however that was changed some time ago:
 - Initial `Path2D` support was added in PR 14858, but the old code kept for Node.js compatibility.
 - Since PR 15951 we've been using a `Path2D` polyfill in Node.js environments.

Hence, after the previous commit, we can further simplify this function by *directly* returning/using the `Path2D` object when rendering Type3-glyphs; see also https://github.com/mozilla/pdf.js/pull/19731#discussion_r2018712695
While this won't improve performance significantly, when compared to the introduction of `Path2D`, it definately cannot hurt.
2025-03-28 15:20:43 +01:00
Jonas Jenwald
852b7e407a Pre-apply the transform when building the Path2D objects for Type3-fonts
Rather than updating the transform every time that we're painting a Type3-glyph, we can instead just compute the "final" coordinates during building of the `Path2D` objects.
2025-03-28 13:28:25 +01:00
calixteman
31ec357282
Merge pull request #19730 from calixteman/update_fluent
Update @fluent/dom to 0.10.1
2025-03-28 11:13:53 +01:00
Calixte Denizet
6ff1626cf3 Update @fluent/dom to 0.10.1 2025-03-28 09:39:02 +01:00
6 changed files with 31 additions and 33 deletions

8
package-lock.json generated
View File

@ -11,7 +11,7 @@
"@babel/preset-env": "^7.26.9",
"@babel/runtime": "^7.26.10",
"@fluent/bundle": "^0.18.0",
"@fluent/dom": "^0.10.0",
"@fluent/dom": "^0.10.1",
"@metalsmith/layouts": "^3.0.0",
"@metalsmith/markdown": "^1.10.0",
"@napi-rs/canvas": "^0.1.68",
@ -1917,9 +1917,9 @@
}
},
"node_modules/@fluent/dom": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/@fluent/dom/-/dom-0.10.0.tgz",
"integrity": "sha512-31a+GJRg6Xhpw9IQ8yNiHhegd10g1DvC30TMSO52bFpjJVJqfQHTuLKFSORNR5xI1oyP4RU4lGLho9+HaC/pVQ==",
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/@fluent/dom/-/dom-0.10.1.tgz",
"integrity": "sha512-OySXxsR3hEkiE75dPXYXsTOk+rCCJ7u6kuz2oekXSwGPBSuwUaYWL/eWJR3kezjSPSwxvTdVOPj9sCcT8utECg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {

View File

@ -6,7 +6,7 @@
"@babel/preset-env": "^7.26.9",
"@babel/runtime": "^7.26.10",
"@fluent/bundle": "^0.18.0",
"@fluent/dom": "^0.10.0",
"@fluent/dom": "^0.10.1",
"@metalsmith/layouts": "^3.0.0",
"@metalsmith/markdown": "^1.10.0",
"@napi-rs/canvas": "^0.1.68",

View File

@ -308,13 +308,13 @@ function compileType3Glyph(imgData) {
]);
const width1 = width + 1;
let points = new Uint8Array(width1 * (height + 1));
const points = new Uint8Array(width1 * (height + 1));
let i, j, j0;
// decodes bit-packed mask data
const lineSize = (width + 7) & ~7;
let data = new Uint8Array(lineSize * height),
pos = 0;
const data = new Uint8Array(lineSize * height);
let pos = 0;
for (const elem of imgData.data) {
let mask = 128;
while (mask > 0) {
@ -406,6 +406,11 @@ function compileType3Glyph(imgData) {
const steps = new Int32Array([0, width1, -1, 0, -width1, 0, 0, 0, 1]);
const path = new Path2D();
// the path shall be painted in [0..1]x[0..1] space
const { a, b, c, d, e, f } = new DOMMatrix()
.scaleSelf(1 / width, -1 / height)
.translateSelf(0, -height);
for (i = 0; count && i <= height; i++) {
let p = i * width1;
const end = p + width;
@ -415,7 +420,9 @@ function compileType3Glyph(imgData) {
if (p === end) {
continue;
}
path.moveTo(p % width1, i);
let x = p % width1;
let y = i;
path.moveTo(a * x + c * y + e, b * x + d * y + f);
const p0 = p;
let type = points[p];
@ -438,7 +445,9 @@ function compileType3Glyph(imgData) {
// set new type for "future hit"
points[p] &= (type >> 2) | (type << 2);
}
path.lineTo(p % width1, (p / width1) | 0);
x = p % width1;
y = (p / width1) | 0;
path.lineTo(a * x + c * y + e, b * x + d * y + f);
if (!points[p]) {
--count;
@ -447,21 +456,7 @@ function compileType3Glyph(imgData) {
--i;
}
// Immediately release the, potentially large, `Uint8Array`s after parsing.
data = null;
points = null;
const drawOutline = function (c) {
c.save();
// the path shall be painted in [0..1]x[0..1] space
c.scale(1 / width, -1 / height);
c.translate(0, -height);
c.fill(path);
c.beginPath();
c.restore();
};
return drawOutline;
return path;
}
class CanvasExtraState {
@ -2720,7 +2715,7 @@ class CanvasGraphics {
}
if (glyph.compiled) {
glyph.compiled(ctx);
ctx.fill(glyph.compiled);
return;
}
}

View File

@ -158,13 +158,6 @@ class SignatureEditor extends DrawingEditor {
super.render();
if (typeof PDFJSDev === "undefined" || !PDFJSDev.test("MOZCENTRAL")) {
// TODO: remove this check once
// https://github.com/projectfluent/fluent.js/pull/640
// is merged and released.
this.div.setAttribute("data-l10n-attrs", "aria-description");
}
if (this._drawId === null) {
if (this.#signatureData) {
const {

View File

@ -0,0 +1 @@
https://bugzilla.mozilla.org/attachment.cgi?id=9254990

View File

@ -2834,6 +2834,15 @@
"rounds": 1,
"type": "eq"
},
{
"id": "bug810214",
"file": "pdfs/bug810214.pdf",
"md5": "2b7243178f5dd5fd3edc7b6649e4bdf3",
"link": true,
"rounds": 1,
"lastPage": 1,
"type": "eq"
},
{
"id": "issue13372",
"file": "pdfs/issue13372.pdf",