mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-07-29 18:37:20 +02:00
Enable the recommended preset and fix or per-line-disable the 78 findings it surfaces. Most are equivalent rewrites, intentional patterns (control chars, the whatwg email regex, autolinker URL regex) keep their behavior via targeted disables.
202 lines
5.2 KiB
JavaScript
202 lines
5.2 KiB
JavaScript
/* Copyright 2021 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { makeObj, warn } from "../../shared/util.js";
|
|
import { $globalData } from "./symbol_utils.js";
|
|
import { stripQuotes } from "./utils.js";
|
|
|
|
class FontFinder {
|
|
constructor(pdfFonts) {
|
|
this.fonts = new Map();
|
|
this.cache = new Map();
|
|
this.warned = new Set();
|
|
this.defaultFont = null;
|
|
this.add(pdfFonts);
|
|
}
|
|
|
|
add(pdfFonts, reallyMissingFonts = null) {
|
|
for (const pdfFont of pdfFonts) {
|
|
this.addPdfFont(pdfFont);
|
|
}
|
|
for (const pdfFont of this.fonts.values()) {
|
|
if (!pdfFont.regular) {
|
|
pdfFont.regular = pdfFont.italic || pdfFont.bold || pdfFont.bolditalic;
|
|
}
|
|
}
|
|
|
|
if (!reallyMissingFonts || reallyMissingFonts.size === 0) {
|
|
return;
|
|
}
|
|
const myriad = this.fonts.get("PdfJS-Fallback-PdfJS-XFA");
|
|
for (const missing of reallyMissingFonts) {
|
|
this.fonts.set(missing, myriad);
|
|
}
|
|
}
|
|
|
|
addPdfFont(pdfFont) {
|
|
const cssFontInfo = pdfFont.cssFontInfo;
|
|
const name = cssFontInfo.fontFamily;
|
|
const font = this.fonts.getOrInsertComputed(name, makeObj);
|
|
this.defaultFont ??= font;
|
|
|
|
let property = "";
|
|
const fontWeight = parseFloat(cssFontInfo.fontWeight);
|
|
if (parseFloat(cssFontInfo.italicAngle) !== 0) {
|
|
property = fontWeight >= 700 ? "bolditalic" : "italic";
|
|
} else if (fontWeight >= 700) {
|
|
property = "bold";
|
|
}
|
|
|
|
if (!property) {
|
|
if (pdfFont.name.includes("Bold") || pdfFont.psName?.includes("Bold")) {
|
|
property = "bold";
|
|
}
|
|
if (
|
|
pdfFont.name.includes("Italic") ||
|
|
pdfFont.name.endsWith("It") ||
|
|
pdfFont.psName?.includes("Italic") ||
|
|
pdfFont.psName?.endsWith("It")
|
|
) {
|
|
property += "italic";
|
|
}
|
|
}
|
|
|
|
if (!property) {
|
|
property = "regular";
|
|
}
|
|
|
|
font[property] = pdfFont;
|
|
}
|
|
|
|
getDefault() {
|
|
return this.defaultFont;
|
|
}
|
|
|
|
find(fontName, mustWarn = true) {
|
|
let font = this.fonts.get(fontName) || this.cache.get(fontName);
|
|
if (font) {
|
|
return font;
|
|
}
|
|
|
|
const pattern = /[,\-_ ]|bolditalic|bold|italic|regular|it/gi;
|
|
let name = fontName.replaceAll(pattern, "");
|
|
font = this.fonts.get(name);
|
|
if (font) {
|
|
this.cache.set(fontName, font);
|
|
return font;
|
|
}
|
|
name = name.toLowerCase();
|
|
|
|
const maybe = [];
|
|
for (const [family, pdfFont] of this.fonts) {
|
|
if (family.replaceAll(pattern, "").toLowerCase().startsWith(name)) {
|
|
maybe.push(pdfFont);
|
|
}
|
|
}
|
|
|
|
if (maybe.length === 0) {
|
|
for (const pdfFont of this.fonts.values()) {
|
|
if (
|
|
pdfFont.regular.name
|
|
?.replaceAll(pattern, "")
|
|
.toLowerCase()
|
|
.startsWith(name)
|
|
) {
|
|
maybe.push(pdfFont);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (maybe.length === 0) {
|
|
name = name.replaceAll(/psmt|mt/gi, "");
|
|
for (const [family, pdfFont] of this.fonts) {
|
|
if (family.replaceAll(pattern, "").toLowerCase().startsWith(name)) {
|
|
maybe.push(pdfFont);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (maybe.length === 0) {
|
|
for (const pdfFont of this.fonts.values()) {
|
|
if (
|
|
pdfFont.regular.name
|
|
?.replaceAll(pattern, "")
|
|
.toLowerCase()
|
|
.startsWith(name)
|
|
) {
|
|
maybe.push(pdfFont);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (maybe.length >= 1) {
|
|
if (maybe.length !== 1 && mustWarn) {
|
|
warn(`XFA - Too many choices to guess the correct font: ${fontName}`);
|
|
}
|
|
this.cache.set(fontName, maybe[0]);
|
|
return maybe[0];
|
|
}
|
|
|
|
if (mustWarn && !this.warned.has(fontName)) {
|
|
this.warned.add(fontName);
|
|
warn(`XFA - Cannot find the font: ${fontName}`);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function selectFont(xfaFont, typeface) {
|
|
if (xfaFont.posture === "italic") {
|
|
if (xfaFont.weight === "bold") {
|
|
return typeface.bolditalic;
|
|
}
|
|
return typeface.italic;
|
|
} else if (xfaFont.weight === "bold") {
|
|
return typeface.bold;
|
|
}
|
|
|
|
return typeface.regular;
|
|
}
|
|
|
|
function getMetrics(xfaFont, real = false) {
|
|
let pdfFont = null;
|
|
if (xfaFont) {
|
|
const name = stripQuotes(xfaFont.typeface);
|
|
const typeface = xfaFont[$globalData].fontFinder.find(name);
|
|
pdfFont = selectFont(xfaFont, typeface);
|
|
}
|
|
|
|
if (!pdfFont) {
|
|
return {
|
|
lineHeight: 12,
|
|
lineGap: 2,
|
|
lineNoGap: 10,
|
|
};
|
|
}
|
|
|
|
const size = xfaFont.size || 10;
|
|
const lineHeight = pdfFont.lineHeight
|
|
? Math.max(real ? 0 : 1.2, pdfFont.lineHeight)
|
|
: 1.2;
|
|
const lineGap = pdfFont.lineGap === undefined ? 0.2 : pdfFont.lineGap;
|
|
return {
|
|
lineHeight: lineHeight * size,
|
|
lineGap: lineGap * size,
|
|
lineNoGap: Math.max(1, lineHeight - lineGap) * size,
|
|
};
|
|
}
|
|
|
|
export { FontFinder, getMetrics, selectFont };
|