From 76cace8b38cc873cc66438faa7bd336f6df8bcfa Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Fri, 26 Jan 2024 11:08:12 -0500 Subject: [PATCH] fix large memory usage --- CHANGELOG.md | 4 ++++ src/Node.ts | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d750190b..bea8207b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +### 9.3.2 (2024-01-26) + +- Fix large memory usage on node export + ### 9.3.1 (2024-01-17) - Fix Pixelate filter work/fix caching size diff --git a/src/Node.ts b/src/Node.ts index 0aa9f59d..0ffba2b3 100644 --- a/src/Node.ts +++ b/src/Node.ts @@ -1933,8 +1933,10 @@ export abstract class Node { context = canvas.getContext(); const bufferCanvas = new SceneCanvas({ - width: canvas.width, - height: canvas.height, + // width and height already multiplied by pixelRatio + // so we need to revert that + width: canvas.width / canvas.pixelRatio, + height: canvas.height / canvas.pixelRatio, pixelRatio: canvas.pixelRatio, });