Skip to content

Commit

Permalink
Fix several issues with radial/axial shadings and tiling patterns.
Browse files Browse the repository at this point in the history
Previously, we set the base transformation and pattern matrix
directly to the main rendering ctx of the page, however doing this
caused the current transform to be lost. This would cause issues
with things like shear missing so the pattern was misaligned or when
stroke was used the scale of the line width or dash would be wrong.
Instead we should leave the current transform and use setTransfrom
on the pattern so it is applied correctly. For axial and radial shadings I had
to create a temporary canvas to draw the shading so I could in turn
use setTransform.

Fixes: #13325, #6769, #7847, #11018, #11597, #11473

The following already in the corpus are improved:
issue8078-page1
issue1877-page1
  • Loading branch information
brendandahl committed May 11, 2021
1 parent 3f187c2 commit ac44afa
Show file tree
Hide file tree
Showing 10 changed files with 133 additions and 49 deletions.
23 changes: 11 additions & 12 deletions src/core/pattern.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,18 +245,17 @@ Shadings.RadialAxial = (function RadialAxialClosure() {
unreachable(`getPattern type unknown: ${shadingType}`);
}

const matrix = this.matrix;
if (matrix) {
p0 = Util.applyTransform(p0, matrix);
p1 = Util.applyTransform(p1, matrix);
if (shadingType === ShadingType.RADIAL) {
const scale = Util.singularValueDecompose2dScale(matrix);
r0 *= scale[0];
r1 *= scale[1];
}
}

return ["RadialAxial", type, this.bbox, this.colorStops, p0, p1, r0, r1];
return [
"RadialAxial",
type,
this.bbox,
this.colorStops,
p0,
p1,
r0,
r1,
this.matrix,
];
},
};

Expand Down
22 changes: 3 additions & 19 deletions src/display/canvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -1386,24 +1386,11 @@ const CanvasGraphics = (function CanvasGraphicsClosure() {
ctx.globalAlpha = this.current.strokeAlpha;
if (this.contentVisible) {
if (typeof strokeColor === "object" && strokeColor?.getPattern) {
// for patterns, we transform to pattern space, calculate
// the pattern, call stroke, and restore to user space
const lineWidth = this.getSinglePixelWidth();
ctx.save();
// The current transform will be replaced while building the pattern,
// but the line width needs to be adjusted by the current transform,
// so we must scale it. To properly fix this we should be using a
// pattern transform instead (see #10955).
const transform = ctx.mozCurrentTransform;
const scale = Util.singularValueDecompose2dScale(transform)[0];
ctx.strokeStyle = strokeColor.getPattern(ctx, this);
const lineWidth = this.getSinglePixelWidth();
const scaledLineWidth = this.current.lineWidth * scale;
if (lineWidth < 0 && -lineWidth >= scaledLineWidth) {
ctx.resetTransform();
ctx.lineWidth = Math.round(this._combinedScaleFactor);
} else {
ctx.lineWidth = Math.max(lineWidth, scaledLineWidth);
}
// Prevent drawing too thin lines by enforcing a minimum line width.
ctx.lineWidth = Math.max(lineWidth, this.current.lineWidth);
ctx.stroke();
ctx.restore();
} else {
Expand Down Expand Up @@ -1444,9 +1431,6 @@ const CanvasGraphics = (function CanvasGraphicsClosure() {

if (isPatternFill) {
ctx.save();
if (this.baseTransform) {
ctx.setTransform.apply(ctx, this.baseTransform);
}
ctx.fillStyle = fillColor.getPattern(ctx, this);
needRestore = true;
}
Expand Down
102 changes: 84 additions & 18 deletions src/display/pattern_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ import { FormatError, info, Util } from "../shared/util.js";

const ShadingIRs = {};

let svgElement;

// TODO: remove this when Firefox ESR supports DOMMatrix.
function createMatrix(matrix) {
if (typeof DOMMatrix !== "undefined") {
return new DOMMatrix(matrix);
}
if (!svgElement) {
svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg");
}
return svgElement.createSVGMatrix(matrix);
}

function applyBoundingBox(ctx, bbox) {
if (!bbox || typeof Path2D === "undefined") {
return;
Expand All @@ -37,21 +50,57 @@ ShadingIRs.RadialAxial = {
const p1 = raw[5];
const r0 = raw[6];
const r1 = raw[7];
const matrix = raw[8];

return {
getPattern: function RadialAxial_getPattern(ctx) {
applyBoundingBox(ctx, bbox);
getPattern: function RadialAxial_getPattern(ctx, owner, shadingFill) {
const tmpCanvas = owner.cachedCanvases.getCanvas(
"pattern",
ctx.canvas.width,
ctx.canvas.height,
true
);

const tmpCtx = tmpCanvas.context;
tmpCtx.clearRect(0, 0, tmpCtx.canvas.width, tmpCtx.canvas.height);
tmpCtx.beginPath();
tmpCtx.rect(0, 0, tmpCtx.canvas.width, tmpCtx.canvas.height);

if (!shadingFill) {
tmpCtx.setTransform.apply(tmpCtx, owner.baseTransform);
if (matrix) {
tmpCtx.transform.apply(tmpCtx, matrix);
}
} else {
tmpCtx.setTransform.apply(tmpCtx, ctx.mozCurrentTransform);
}
applyBoundingBox(tmpCtx, bbox);

let grad;
if (type === "axial") {
grad = ctx.createLinearGradient(p0[0], p0[1], p1[0], p1[1]);
grad = tmpCtx.createLinearGradient(p0[0], p0[1], p1[0], p1[1]);
} else if (type === "radial") {
grad = ctx.createRadialGradient(p0[0], p0[1], r0, p1[0], p1[1], r1);
grad = tmpCtx.createRadialGradient(
p0[0],
p0[1],
r0,
p1[0],
p1[1],
r1
);
}

for (let i = 0, ii = colorStops.length; i < ii; ++i) {
const c = colorStops[i];
grad.addColorStop(c[0], c[1]);
}
return grad;

tmpCtx.fillStyle = grad;
tmpCtx.fill();

const pattern = ctx.createPattern(tmpCanvas.canvas, "repeat");
pattern.setTransform(createMatrix(ctx.mozCurrentTransformInverse));
return pattern;
},
};
},
Expand Down Expand Up @@ -505,19 +554,17 @@ const TilingPattern = (function TilingPatternClosure() {

graphics.transform(dimx.scale, 0, 0, dimy.scale, 0, 0);

// transform coordinates to pattern space
graphics.transform(1, 0, 0, 1, -x0, -y0);

this.clipBbox(graphics, bbox, x0, y0, x1, y1);

graphics.executeOperatorList(operatorList);
graphics.baseTransform = graphics.ctx.mozCurrentTransform.slice();

this.ctx.transform(1, 0, 0, 1, x0, y0);
graphics.executeOperatorList(operatorList);

// Rescale canvas so that the ctx.createPattern call generates a pattern
// with the desired size.
this.ctx.scale(1 / dimx.scale, 1 / dimy.scale);
return tmpCanvas.canvas;
return {
canvas: tmpCanvas.canvas,
scaleX: dimx.scale,
scaleY: dimy.scale,
};
},

getSizeAndScale: function TilingPattern_getSizeAndScale(
Expand Down Expand Up @@ -579,15 +626,34 @@ const TilingPattern = (function TilingPatternClosure() {
}
},

getPattern: function TilingPattern_getPattern(ctx, owner) {
getPattern: function TilingPattern_getPattern(ctx, owner, shadingFill) {
ctx = this.ctx;
// PDF spec 8.7.2 NOTE 1: pattern's matrix is relative to initial matrix.
ctx.setTransform.apply(ctx, this.baseTransform);
ctx.transform.apply(ctx, this.matrix);
let matrix = ctx.mozCurrentTransformInverse;
if (!shadingFill) {
matrix = Util.transform(matrix, owner.baseTransform);
if (this.matrix) {
matrix = Util.transform(matrix, this.matrix);
}
}

const temporaryPatternCanvas = this.createPatternCanvas(owner);

return ctx.createPattern(temporaryPatternCanvas, "repeat");
let domMatrix = createMatrix(matrix);
// Rescale and so that the ctx.createPattern call generates a pattern with
// the desired size.
domMatrix = domMatrix.scale(
1 / temporaryPatternCanvas.scaleX,
1 / temporaryPatternCanvas.scaleY
);

const pattern = ctx.createPattern(
temporaryPatternCanvas.canvas,
"repeat"
);
pattern.setTransform(domMatrix);

return pattern;
},
};

Expand Down
5 changes: 5 additions & 0 deletions test/pdfs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
!issue7406.pdf
!issue7426.pdf
!issue7439.pdf
!issue7847_radial.pdf
!issue7446.pdf
!issue7492.pdf
!issue7544.pdf
Expand Down Expand Up @@ -101,6 +102,7 @@
!issue11242_reduced.pdf
!issue11279.pdf
!issue11362.pdf
!issue13325_reduced.pdf
!issue11578_reduced.pdf
!issue11651.pdf
!issue11878.pdf
Expand Down Expand Up @@ -296,6 +298,7 @@
!bug1028735.pdf
!bug1046314.pdf
!bug1065245.pdf
!issue6769.pdf
!bug1151216.pdf
!bug1175962.pdf
!bug1020226.pdf
Expand Down Expand Up @@ -365,6 +368,7 @@
!issue5481.pdf
!issue5567.pdf
!issue5701.pdf
!issue6769_no_matrix.pdf
!issue12007_reduced.pdf
!issue5896.pdf
!issue6010_1.pdf
Expand All @@ -378,6 +382,7 @@
!issue13271.pdf
!issue6298.pdf
!issue6889.pdf
!issue11473.pdf
!bug1001080.pdf
!bug1671312_reduced.pdf
!bug1671312_ArialNarrow.pdf
Expand Down
Binary file added test/pdfs/issue11473.pdf
Binary file not shown.
Binary file added test/pdfs/issue13325_reduced.pdf
Binary file not shown.
Binary file added test/pdfs/issue6769.pdf
Binary file not shown.
Binary file added test/pdfs/issue6769_no_matrix.pdf
Binary file not shown.
Binary file added test/pdfs/issue7847_radial.pdf
Binary file not shown.
30 changes: 30 additions & 0 deletions test/test_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,12 @@
"lastPage": 2,
"type": "load"
},
{ "id": "issue7847_radial",
"file": "pdfs/issue7847_radial.pdf",
"md5": "59dc206ec5dd6e6f701943e4694e4147",
"rounds": 1,
"type": "eq"
},
{ "id": "rotation",
"file": "pdfs/rotation.pdf",
"md5": "4fb25ada00ce7528569d9791c14decf5",
Expand Down Expand Up @@ -637,6 +643,12 @@
"rounds": 1,
"type": "eq"
},
{ "id": "issue6769_no_matrix",
"file": "pdfs/issue6769_no_matrix.pdf",
"md5": "f88806137fb4592975052ff3508d7b1e",
"rounds": 1,
"type": "eq"
},
{ "id": "unix01",
"file": "pdfs/unix01.pdf",
"md5": "2742999f0bf9b9c035dbb0736096e220",
Expand Down Expand Up @@ -2552,6 +2564,12 @@
"rounds": 1,
"type": "eq"
},
{ "id": "issue6769",
"file": "pdfs/issue6769.pdf",
"md5": "724b94d6bd1e8010403328446d0ab061",
"rounds": 1,
"type": "eq"
},
{ "id": "issue4304",
"file": "pdfs/issue4304.pdf",
"md5": "1b1205bf0d7c1ad22a154b60da8e694d",
Expand Down Expand Up @@ -3976,6 +3994,12 @@
"link": true,
"type": "eq"
},
{ "id": "issue11473",
"file": "pdfs/issue11473.pdf",
"md5": "c530851b0523c81784ab4ea3115a7c67",
"rounds": 1,
"type": "eq"
},
{ "id": "bug1140761",
"file": "pdfs/bug1140761.pdf",
"md5": "b74eced7634d4f248dc6265f8225d432",
Expand Down Expand Up @@ -4392,6 +4416,12 @@
"type": "eq",
"about": "Support for CMap GBKp-EUC-H"
},
{ "id": "issue13325_reduced",
"file": "pdfs/issue13325_reduced.pdf",
"md5": "a9311230d2e3388070711be8748a1aa0",
"rounds": 1,
"type": "eq"
},
{ "id": "issue2829",
"file": "pdfs/issue2829.pdf",
"md5": "f32b28cf8792f6ccc470446bfbb38584",
Expand Down

0 comments on commit ac44afa

Please sign in to comment.