From 6a91157388afadbc25c020dd8ba7fe60b520a11f Mon Sep 17 00:00:00 2001 From: lanyeeee <1210347077@qq.com> Date: Tue, 17 Dec 2024 17:02:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=99=E4=B8=8B=E8=BD=BD=E6=A0=BC?= =?UTF-8?q?=E5=BC=8Fjpg=E5=92=8Cwebp=E6=B7=BB=E5=8A=A0=E5=AE=BD=E9=AB=98?= =?UTF-8?q?=E4=B8=8A=E9=99=90=E7=9A=84=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SettingsDialog.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/SettingsDialog.vue b/src/components/SettingsDialog.vue index e67a2ce..a2b90a6 100644 --- a/src/components/SettingsDialog.vue +++ b/src/components/SettingsDialog.vue @@ -25,6 +25,7 @@ const disableProxyHostAndPort = computed(() => config.value.proxyMode !== "Custo 1. 有损(肉眼看不出)
2. 文件体积小
+ 4. 宽高的上限为65534(某些条漫可能会超过这个上限导致报错)
3. 编码速度最快
@@ -42,7 +43,8 @@ const disableProxyHostAndPort = computed(() => config.value.proxyMode !== "Custo 1. 无损
2. 这是jm图片原本的格式
3. 文件体积大(约为jpg的4倍)
- 4. 编码速度较慢
+ 4. 宽高的上限为16383(某些条漫可能会超过这个上限导致报错)
+ 5. 编码速度较慢