|
|
@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { |
|
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {}; |
|
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {}; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
PDFJS.version = '1.2.83'; |
|
|
|
PDFJS.version = '1.2.85'; |
|
|
|
PDFJS.build = '1280b7b'; |
|
|
|
PDFJS.build = '5b2015b'; |
|
|
|
|
|
|
|
|
|
|
|
(function pdfjsWrapper() { |
|
|
|
(function pdfjsWrapper() { |
|
|
|
// Use strict in our context only - users might not want it
|
|
|
|
// Use strict in our context only - users might not want it
|
|
|
@ -24417,6 +24417,15 @@ var Font = (function FontClosure() { |
|
|
|
* PDF spec |
|
|
|
* PDF spec |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
function readCmapTable(cmap, font, isSymbolicFont, hasEncoding) { |
|
|
|
function readCmapTable(cmap, font, isSymbolicFont, hasEncoding) { |
|
|
|
|
|
|
|
if (!cmap) { |
|
|
|
|
|
|
|
warn('No cmap table available.'); |
|
|
|
|
|
|
|
return { |
|
|
|
|
|
|
|
platformId: -1, |
|
|
|
|
|
|
|
encodingId: -1, |
|
|
|
|
|
|
|
mappings: [], |
|
|
|
|
|
|
|
hasShortCmap: false |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
} |
|
|
|
var segment; |
|
|
|
var segment; |
|
|
|
var start = (font.start ? font.start : 0) + cmap.offset; |
|
|
|
var start = (font.start ? font.start : 0) + cmap.offset; |
|
|
|
font.pos = start; |
|
|
|
font.pos = start; |
|
|
|