[Pkg-javascript-commits] [pdf.js] 271/414: Refactor the building of `toFontChar` for non-embedded fonts
David Prévot
taffit at moszumanska.debian.org
Tue Jun 28 17:12:29 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository pdf.js.
commit cd2bd057abb3074f3ff9627a889919d1422597d8
Author: Jonas Jenwald <jonas.jenwald at gmail.com>
Date: Thu Mar 10 18:08:17 2016 +0100
Refactor the building of `toFontChar` for non-embedded fonts
Currently there's a lot of duplicate code for non-embedded `toFontChar`, which this patch simplifies by extracting the code into a helper function instead.
---
src/core/fonts.js | 71 +++++++++++++++++++++----------------------------------
1 file changed, 27 insertions(+), 44 deletions(-)
diff --git a/src/core/fonts.js b/src/core/fonts.js
index 5944325..bf89c26 100644
--- a/src/core/fonts.js
+++ b/src/core/fonts.js
@@ -466,7 +466,7 @@ var ProblematicCharRanges = new Int32Array([
*/
var Font = (function FontClosure() {
function Font(name, file, properties) {
- var charCode, glyphName, unicode, fontChar;
+ var charCode, glyphName, unicode;
this.name = name;
this.loadedName = properties.loadedName;
@@ -572,53 +572,19 @@ var Font = (function FontClosure() {
this.toFontChar = map;
this.toUnicode = new ToUnicodeMap(map);
} else if (/Symbol/i.test(fontName)) {
- var symbols = SymbolSetEncoding;
- glyphsUnicodeMap = getGlyphsUnicode();
- for (charCode in symbols) {
- fontChar = glyphsUnicodeMap[symbols[charCode]];
- if (!fontChar) {
- continue;
- }
- this.toFontChar[charCode] = fontChar;
- }
- for (charCode in properties.differences) {
- fontChar = glyphsUnicodeMap[properties.differences[charCode]];
- if (!fontChar) {
- continue;
- }
- this.toFontChar[charCode] = fontChar;
- }
+ this.toFontChar = buildToFontChar(SymbolSetEncoding, getGlyphsUnicode(),
+ properties.differences);
} else if (/Dingbats/i.test(fontName)) {
- glyphsUnicodeMap = getDingbatsGlyphsUnicode();
if (/Wingdings/i.test(name)) {
- warn('Wingdings font without embedded font file, ' +
- 'falling back to the ZapfDingbats encoding.');
- }
- var dingbats = ZapfDingbatsEncoding;
- for (charCode in dingbats) {
- fontChar = glyphsUnicodeMap[dingbats[charCode]];
- if (!fontChar) {
- continue;
- }
- this.toFontChar[charCode] = fontChar;
- }
- for (charCode in properties.differences) {
- fontChar = glyphsUnicodeMap[properties.differences[charCode]];
- if (!fontChar) {
- continue;
- }
- this.toFontChar[charCode] = fontChar;
+ warn('Non-embedded Wingdings font, falling back to ZapfDingbats.');
}
+ this.toFontChar = buildToFontChar(ZapfDingbatsEncoding,
+ getDingbatsGlyphsUnicode(),
+ properties.differences);
} else if (isStandardFont) {
- glyphsUnicodeMap = getGlyphsUnicode();
- for (charCode in properties.defaultEncoding) {
- glyphName = (properties.differences[charCode] ||
- properties.defaultEncoding[charCode]);
- unicode = getUnicodeForGlyph(glyphName, glyphsUnicodeMap);
- if (unicode !== -1) {
- this.toFontChar[charCode] = unicode;
- }
- }
+ this.toFontChar = buildToFontChar(properties.defaultEncoding,
+ getGlyphsUnicode(),
+ properties.differences);
} else {
glyphsUnicodeMap = getGlyphsUnicode();
this.toUnicode.forEach(function(charCode, unicodeCharCode) {
@@ -771,6 +737,23 @@ var Font = (function FontClosure() {
return false;
}
+ function buildToFontChar(encoding, glyphsUnicodeMap, differences) {
+ var toFontChar = [], unicode;
+ for (var i = 0, ii = encoding.length; i < ii; i++) {
+ unicode = getUnicodeForGlyph(encoding[i], glyphsUnicodeMap);
+ if (unicode !== -1) {
+ toFontChar[i] = unicode;
+ }
+ }
+ for (var charCode in differences) {
+ unicode = getUnicodeForGlyph(differences[charCode], glyphsUnicodeMap);
+ if (unicode !== -1) {
+ toFontChar[+charCode] = unicode;
+ }
+ }
+ return toFontChar;
+ }
+
/**
* Helper function for |adjustMapping|.
* @return {boolean}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/pdf.js.git
More information about the Pkg-javascript-commits
mailing list