Compare commits

...

4 Commits

Author SHA1 Message Date
Jonas Jenwald
16c876569f
Merge pull request #19760 from Snuffleupagus/OperatorList-transfers-bitmap
Also transfer `ImageBitmap`s for image masks and inline images
2025-04-03 20:10:27 +02:00
Jonas Jenwald
8c5fb7979f Also transfer ImageBitmaps for image masks and inline images
Currently we're only transferring TypedArrays, however there's no reason (as far as I can tell) to not also transfer `ImageBitmap`s in these cases.
2025-04-03 18:50:39 +02:00
calixteman
ff2d95a9b6
Merge pull request #19752 from calixteman/simplify_updateRectMinMax
Simplify updateRectMinMax in order to use slightly less memory
2025-04-03 18:25:30 +02:00
Calixte Denizet
41bed561f0 Simplify updateRectMinMax in order to use slightly less memory 2025-04-03 17:06:58 +02:00
3 changed files with 41 additions and 21 deletions

View File

@ -516,7 +516,9 @@ class PartialEvaluator {
// If it's a group, a new canvas will be created that is the size of the
// bounding box and translated to the correct position so we don't need to
// apply the bounding box to it.
const args = group ? [matrix, null] : [matrix, bbox];
const f32matrix = matrix && new Float32Array(matrix);
const f32bbox = (!group && bbox && new Float32Array(bbox)) || null;
const args = [f32matrix, f32bbox];
operatorList.addOp(OPS.paintFormXObjectBegin, args);
await this.getOperatorList({

View File

@ -768,18 +768,29 @@ class OperatorList {
switch (fnArray[i]) {
case OPS.paintInlineImageXObject:
case OPS.paintInlineImageXObjectGroup:
case OPS.paintImageMaskXObject:
const arg = argsArray[i][0]; // First parameter in imgData.
if (arg.data?.buffer instanceof ArrayBuffer) {
transfers.push(arg.data.buffer);
case OPS.paintImageMaskXObject: {
const { bitmap, data } = argsArray[i][0]; // First parameter in imgData.
if (bitmap || data?.buffer) {
transfers.push(bitmap || data.buffer);
}
break;
case OPS.constructPath:
}
case OPS.constructPath: {
const [, [data], minMax] = argsArray[i];
if (data) {
transfers.push(data.buffer, minMax.buffer);
}
break;
}
case OPS.paintFormXObjectBegin:
const [matrix, bbox] = argsArray[i];
if (matrix) {
transfers.push(matrix.buffer);
}
if (bbox) {
transfers.push(bbox.buffer);
}
break;
}
}
return transfers;

View File

@ -339,20 +339,27 @@ class CanvasExtraState {
return clone;
}
updateRectMinMax(transform, rect) {
const p1 = [rect[0], rect[1]];
Util.applyTransform(p1, transform);
const p2 = [rect[2], rect[3]];
Util.applyTransform(p2, transform);
const p3 = [rect[0], rect[3]];
Util.applyTransform(p3, transform);
const p4 = [rect[2], rect[1]];
Util.applyTransform(p4, transform);
this.minX = Math.min(this.minX, p1[0], p2[0], p3[0], p4[0]);
this.minY = Math.min(this.minY, p1[1], p2[1], p3[1], p4[1]);
this.maxX = Math.max(this.maxX, p1[0], p2[0], p3[0], p4[0]);
this.maxY = Math.max(this.maxY, p1[1], p2[1], p3[1], p4[1]);
updateRectMinMax([m0, m1, m2, m3, m4, m5], [r0, r1, r2, r3]) {
const m0r0m4 = m0 * r0 + m4;
const m0r2m4 = m0 * r2 + m4;
const m1r0m5 = m1 * r0 + m5;
const m1r2m5 = m1 * r2 + m5;
const m2r1 = m2 * r1;
const m2r3 = m2 * r3;
const m3r1 = m3 * r1;
const m3r3 = m3 * r3;
const a0 = m0r0m4 + m2r1;
const a1 = m0r2m4 + m2r3;
const a2 = m0r0m4 + m2r3;
const a3 = m0r2m4 + m2r1;
const b0 = m1r0m5 + m3r1;
const b1 = m1r2m5 + m3r3;
const b2 = m1r0m5 + m3r3;
const b3 = m1r2m5 + m3r1;
this.minX = Math.min(this.minX, a0, a1, a2, a3);
this.maxX = Math.max(this.maxX, a0, a1, a2, a3);
this.minY = Math.min(this.minY, b0, b1, b2, b3);
this.maxY = Math.max(this.maxY, b0, b1, b2, b3);
}
getPathBoundingBox(pathType = PathType.FILL, transform = null) {
@ -2275,7 +2282,7 @@ class CanvasGraphics {
this.baseTransform = getCurrentTransform(this.ctx);
if (bbox) {
this.current.updateRectMinMax(getCurrentTransform(this.ctx), bbox);
this.current.updateRectMinMax(this.baseTransform, bbox);
const [x0, y0, x1, y1] = bbox;
const clip = new Path2D();
clip.rect(x0, y0, x1 - x0, y1 - y0);