From 9ba3f4c9a8212bb9785a68180a82d7e292a0dd17 Mon Sep 17 00:00:00 2001 From: Jan Kessler Date: Mon, 31 Mar 2025 07:05:27 +0200 Subject: [PATCH] adjust avatar quality again, to 0.25 --- src/lib/components/chat/Settings/Account.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/components/chat/Settings/Account.svelte b/src/lib/components/chat/Settings/Account.svelte index 997ec49c9..eb6c21147 100644 --- a/src/lib/components/chat/Settings/Account.svelte +++ b/src/lib/components/chat/Settings/Account.svelte @@ -132,7 +132,8 @@ ctx.drawImage(img, offsetX, offsetY, newWidth, newHeight); // Get the base64 representation of the compressed image - const compressedSrc = canvas.toDataURL('image/jpeg'); + const jpegQuality = 0.25; + const compressedSrc = canvas.toDataURL('image/jpeg', jpegQuality); // Display the compressed image profileImageUrl = compressedSrc;