|
|
@ -13473,8 +13473,8 @@ var _UnsupportedManager = function UnsupportedManagerClosure() { |
|
|
|
}(); |
|
|
|
}(); |
|
|
|
var version, build; |
|
|
|
var version, build; |
|
|
|
{ |
|
|
|
{ |
|
|
|
exports.version = version = '1.9.556'; |
|
|
|
exports.version = version = '1.9.558'; |
|
|
|
exports.build = build = '2916ed08'; |
|
|
|
exports.build = build = 'f2618eb2'; |
|
|
|
} |
|
|
|
} |
|
|
|
exports.getDocument = getDocument; |
|
|
|
exports.getDocument = getDocument; |
|
|
|
exports.LoopbackPort = LoopbackPort; |
|
|
|
exports.LoopbackPort = LoopbackPort; |
|
|
@ -29310,8 +29310,8 @@ exports.SVGGraphics = SVGGraphics; |
|
|
|
"use strict"; |
|
|
|
"use strict"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var pdfjsVersion = '1.9.556'; |
|
|
|
var pdfjsVersion = '1.9.558'; |
|
|
|
var pdfjsBuild = '2916ed08'; |
|
|
|
var pdfjsBuild = 'f2618eb2'; |
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0); |
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0); |
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(98); |
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(98); |
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(55); |
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(55); |
|
|
@ -35173,8 +35173,8 @@ if (!_global_scope2.default.PDFJS) { |
|
|
|
} |
|
|
|
} |
|
|
|
var PDFJS = _global_scope2.default.PDFJS; |
|
|
|
var PDFJS = _global_scope2.default.PDFJS; |
|
|
|
{ |
|
|
|
{ |
|
|
|
PDFJS.version = '1.9.556'; |
|
|
|
PDFJS.version = '1.9.558'; |
|
|
|
PDFJS.build = '2916ed08'; |
|
|
|
PDFJS.build = 'f2618eb2'; |
|
|
|
} |
|
|
|
} |
|
|
|
PDFJS.pdfBug = false; |
|
|
|
PDFJS.pdfBug = false; |
|
|
|
if (PDFJS.verbosity !== undefined) { |
|
|
|
if (PDFJS.verbosity !== undefined) { |
|
|
@ -37627,7 +37627,7 @@ var TilingPattern = function TilingPatternClosure() { |
|
|
|
var tmpCtx = tmpCanvas.context; |
|
|
|
var tmpCtx = tmpCanvas.context; |
|
|
|
var graphics = canvasGraphicsFactory.createCanvasGraphics(tmpCtx); |
|
|
|
var graphics = canvasGraphicsFactory.createCanvasGraphics(tmpCtx); |
|
|
|
graphics.groupLevel = owner.groupLevel; |
|
|
|
graphics.groupLevel = owner.groupLevel; |
|
|
|
this.setFillAndStrokeStyleToContext(tmpCtx, paintType, color); |
|
|
|
this.setFillAndStrokeStyleToContext(graphics, paintType, color); |
|
|
|
this.setScale(width, height, xstep, ystep); |
|
|
|
this.setScale(width, height, xstep, ystep); |
|
|
|
this.transformToScale(graphics); |
|
|
|
this.transformToScale(graphics); |
|
|
|
var tmpTranslate = [1, 0, 0, 1, -topLeft[0], -topLeft[1]]; |
|
|
|
var tmpTranslate = [1, 0, 0, 1, -topLeft[0], -topLeft[1]]; |
|
|
@ -37657,17 +37657,23 @@ var TilingPattern = function TilingPatternClosure() { |
|
|
|
graphics.endPath(); |
|
|
|
graphics.endPath(); |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
setFillAndStrokeStyleToContext: function setFillAndStrokeStyleToContext(context, paintType, color) { |
|
|
|
setFillAndStrokeStyleToContext: function setFillAndStrokeStyleToContext(graphics, paintType, color) { |
|
|
|
|
|
|
|
var context = graphics.ctx, |
|
|
|
|
|
|
|
current = graphics.current; |
|
|
|
switch (paintType) { |
|
|
|
switch (paintType) { |
|
|
|
case PaintType.COLORED: |
|
|
|
case PaintType.COLORED: |
|
|
|
var ctx = this.ctx; |
|
|
|
var ctx = this.ctx; |
|
|
|
context.fillStyle = ctx.fillStyle; |
|
|
|
context.fillStyle = ctx.fillStyle; |
|
|
|
context.strokeStyle = ctx.strokeStyle; |
|
|
|
context.strokeStyle = ctx.strokeStyle; |
|
|
|
|
|
|
|
current.fillColor = ctx.fillStyle; |
|
|
|
|
|
|
|
current.strokeColor = ctx.strokeStyle; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case PaintType.UNCOLORED: |
|
|
|
case PaintType.UNCOLORED: |
|
|
|
var cssColor = _util.Util.makeCssRgb(color[0], color[1], color[2]); |
|
|
|
var cssColor = _util.Util.makeCssRgb(color[0], color[1], color[2]); |
|
|
|
context.fillStyle = cssColor; |
|
|
|
context.fillStyle = cssColor; |
|
|
|
context.strokeStyle = cssColor; |
|
|
|
context.strokeStyle = cssColor; |
|
|
|
|
|
|
|
current.fillColor = cssColor; |
|
|
|
|
|
|
|
current.strokeColor = cssColor; |
|
|
|
break; |
|
|
|
break; |
|
|
|
default: |
|
|
|
default: |
|
|
|
throw new _util.FormatError('Unsupported paint type: ' + paintType); |
|
|
|
throw new _util.FormatError('Unsupported paint type: ' + paintType); |
|
|
|