|
@@ -20,8 +20,8 @@ if (typeof PDFJS === 'undefined') {
|
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {};
|
|
|
}
|
|
|
|
|
|
-PDFJS.version = '1.2.127';
|
|
|
-PDFJS.build = 'd000f03';
|
|
|
+PDFJS.version = '1.2.129';
|
|
|
+PDFJS.build = '2f1a626';
|
|
|
|
|
|
(function pdfjsWrapper() {
|
|
|
// Use strict in our context only - users might not want it
|
|
@@ -16814,6 +16814,11 @@ Shadings.RadialAxial = (function RadialAxialClosure() {
|
|
|
if (matrix) {
|
|
|
p0 = Util.applyTransform(p0, matrix);
|
|
|
p1 = Util.applyTransform(p1, matrix);
|
|
|
+ if (shadingType === ShadingType.RADIAL) {
|
|
|
+ var scale = Util.singularValueDecompose2dScale(matrix);
|
|
|
+ r0 *= scale[0];
|
|
|
+ r1 *= scale[1];
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
return ['RadialAxial', type, this.colorStops, p0, p1, r0, r1];
|