From 555ae5f40049ffd958ec4e58e80ccd3ba4f524f3 Mon Sep 17 00:00:00 2001 From: Jinyun Hou Date: Sun, 17 Aug 2025 14:21:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=E7=AD=BE=E5=AD=97?= =?UTF-8?q?=E7=89=88=E7=BB=84=E4=BB=B6=E8=AE=BE=E7=BD=AEexportScale=20<=20?= =?UTF-8?q?1=E6=97=B6=E5=9C=A8=E6=94=AF=E4=BB=98=E5=AE=9D=E4=B8=8A?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=9B=BE=E7=89=87=E4=B8=8D=E5=AE=8C=E6=95=B4?= =?UTF-8?q?=20(#1129)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: hjy --- .../wot-design-uni/components/wd-signature/wd-signature.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uni_modules/wot-design-uni/components/wd-signature/wd-signature.vue b/src/uni_modules/wot-design-uni/components/wd-signature/wd-signature.vue index 79f8dcd6..b6dcf684 100644 --- a/src/uni_modules/wot-design-uni/components/wd-signature/wd-signature.vue +++ b/src/uni_modules/wot-design-uni/components/wd-signature/wd-signature.vue @@ -532,8 +532,8 @@ function canvasToImage() { const { canvasWidth, canvasHeight } = canvasState uni.canvasToTempFilePath( { - width: canvasWidth * exportScale, - height: canvasHeight * exportScale, + width: canvasWidth, + height: canvasHeight, destWidth: canvasWidth * exportScale, destHeight: canvasHeight * exportScale, fileType,