|
|
@ -13077,8 +13077,8 @@ var _UnsupportedManager = function UnsupportedManagerClosure() { |
|
|
|
}(); |
|
|
|
}(); |
|
|
|
var version, build; |
|
|
|
var version, build; |
|
|
|
{ |
|
|
|
{ |
|
|
|
exports.version = version = '1.8.476'; |
|
|
|
exports.version = version = '1.8.478'; |
|
|
|
exports.build = build = '36fb3686'; |
|
|
|
exports.build = build = 'c6ee05f7'; |
|
|
|
} |
|
|
|
} |
|
|
|
exports.getDocument = getDocument; |
|
|
|
exports.getDocument = getDocument; |
|
|
|
exports.LoopbackPort = LoopbackPort; |
|
|
|
exports.LoopbackPort = LoopbackPort; |
|
|
@ -13365,6 +13365,7 @@ var SVGGraphics = function SVGGraphics() { |
|
|
|
this.extraStack = []; |
|
|
|
this.extraStack = []; |
|
|
|
this.commonObjs = commonObjs; |
|
|
|
this.commonObjs = commonObjs; |
|
|
|
this.objs = objs; |
|
|
|
this.objs = objs; |
|
|
|
|
|
|
|
this.pendingClip = null; |
|
|
|
this.pendingEOFill = false; |
|
|
|
this.pendingEOFill = false; |
|
|
|
this.embedFonts = false; |
|
|
|
this.embedFonts = false; |
|
|
|
this.embeddedFonts = Object.create(null); |
|
|
|
this.embeddedFonts = Object.create(null); |
|
|
@ -13388,6 +13389,7 @@ var SVGGraphics = function SVGGraphics() { |
|
|
|
restore: function SVGGraphics_restore() { |
|
|
|
restore: function SVGGraphics_restore() { |
|
|
|
this.transformMatrix = this.transformStack.pop(); |
|
|
|
this.transformMatrix = this.transformStack.pop(); |
|
|
|
this.current = this.extraStack.pop(); |
|
|
|
this.current = this.extraStack.pop(); |
|
|
|
|
|
|
|
this.pendingClip = null; |
|
|
|
this.tgrp = null; |
|
|
|
this.tgrp = null; |
|
|
|
}, |
|
|
|
}, |
|
|
|
group: function SVGGraphics_group(items) { |
|
|
|
group: function SVGGraphics_group(items) { |
|
|
@ -13826,8 +13828,10 @@ var SVGGraphics = function SVGGraphics() { |
|
|
|
current.element = current.path; |
|
|
|
current.element = current.path; |
|
|
|
current.setCurrentPoint(x, y); |
|
|
|
current.setCurrentPoint(x, y); |
|
|
|
}, |
|
|
|
}, |
|
|
|
endPath: function SVGGraphics_endPath() {}, |
|
|
|
endPath: function SVGGraphics_endPath() { |
|
|
|
clip: function SVGGraphics_clip(type) { |
|
|
|
if (!this.pendingClip) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
var current = this.current; |
|
|
|
var current = this.current; |
|
|
|
var clipId = 'clippath' + clipCount; |
|
|
|
var clipId = 'clippath' + clipCount; |
|
|
|
clipCount++; |
|
|
|
clipCount++; |
|
|
@ -13835,11 +13839,12 @@ var SVGGraphics = function SVGGraphics() { |
|
|
|
clipPath.setAttributeNS(null, 'id', clipId); |
|
|
|
clipPath.setAttributeNS(null, 'id', clipId); |
|
|
|
clipPath.setAttributeNS(null, 'transform', pm(this.transformMatrix)); |
|
|
|
clipPath.setAttributeNS(null, 'transform', pm(this.transformMatrix)); |
|
|
|
var clipElement = current.element.cloneNode(); |
|
|
|
var clipElement = current.element.cloneNode(); |
|
|
|
if (type === 'evenodd') { |
|
|
|
if (this.pendingClip === 'evenodd') { |
|
|
|
clipElement.setAttributeNS(null, 'clip-rule', 'evenodd'); |
|
|
|
clipElement.setAttributeNS(null, 'clip-rule', 'evenodd'); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
clipElement.setAttributeNS(null, 'clip-rule', 'nonzero'); |
|
|
|
clipElement.setAttributeNS(null, 'clip-rule', 'nonzero'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
this.pendingClip = null; |
|
|
|
clipPath.appendChild(clipElement); |
|
|
|
clipPath.appendChild(clipElement); |
|
|
|
this.defs.appendChild(clipPath); |
|
|
|
this.defs.appendChild(clipPath); |
|
|
|
if (current.activeClipUrl) { |
|
|
|
if (current.activeClipUrl) { |
|
|
@ -13851,6 +13856,9 @@ var SVGGraphics = function SVGGraphics() { |
|
|
|
current.activeClipUrl = 'url(#' + clipId + ')'; |
|
|
|
current.activeClipUrl = 'url(#' + clipId + ')'; |
|
|
|
this.tgrp = null; |
|
|
|
this.tgrp = null; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
clip: function SVGGraphics_clip(type) { |
|
|
|
|
|
|
|
this.pendingClip = type; |
|
|
|
|
|
|
|
}, |
|
|
|
closePath: function SVGGraphics_closePath() { |
|
|
|
closePath: function SVGGraphics_closePath() { |
|
|
|
var current = this.current; |
|
|
|
var current = this.current; |
|
|
|
var d = current.path.getAttributeNS(null, 'd'); |
|
|
|
var d = current.path.getAttributeNS(null, 'd'); |
|
|
@ -28425,8 +28433,8 @@ if (!_util.globalScope.PDFJS) { |
|
|
|
} |
|
|
|
} |
|
|
|
var PDFJS = _util.globalScope.PDFJS; |
|
|
|
var PDFJS = _util.globalScope.PDFJS; |
|
|
|
{ |
|
|
|
{ |
|
|
|
PDFJS.version = '1.8.476'; |
|
|
|
PDFJS.version = '1.8.478'; |
|
|
|
PDFJS.build = '36fb3686'; |
|
|
|
PDFJS.build = 'c6ee05f7'; |
|
|
|
} |
|
|
|
} |
|
|
|
PDFJS.pdfBug = false; |
|
|
|
PDFJS.pdfBug = false; |
|
|
|
if (PDFJS.verbosity !== undefined) { |
|
|
|
if (PDFJS.verbosity !== undefined) { |
|
|
@ -47043,8 +47051,8 @@ exports.TilingPattern = TilingPattern; |
|
|
|
"use strict"; |
|
|
|
"use strict"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var pdfjsVersion = '1.8.476'; |
|
|
|
var pdfjsVersion = '1.8.478'; |
|
|
|
var pdfjsBuild = '36fb3686'; |
|
|
|
var pdfjsBuild = 'c6ee05f7'; |
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0); |
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0); |
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(26); |
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(26); |
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(10); |
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(10); |
|
|
|