Skip to content

Commit 4ca76ff

Browse files
committed
fix empty intrinsicSize
1 parent 6020386 commit 4ca76ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/render/canvas/canvas-renderer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ export class CanvasRenderer extends Renderer {
598598
const [path, x, y, width, height] = calculateBackgroundRendering(container, index, [
599599
image.width,
600600
image.height,
601-
image.width / image.height
601+
(image.width / image.height) ?? 1
602602
]);
603603
const pattern = this.ctx.createPattern(
604604
this.resizeImage(image, width, height),

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"outDir": "dist/lib",
1414
"declaration": true,
1515
"declarationDir": "dist/types",
16-
"resolveJsonModule": true
16+
"resolveJsonModule": true,
1717
},
1818
"include": [
1919
"src"

0 commit comments

Comments
 (0)